JavaScript 输出

javascript 输出

javascript 不提供任何内建的打印或显示函数。

javascript 提供四种显示方案,能够以不同方式输出数据:

  • 使用 window.alert() 写入警告框
  • 使用 document.write() 写入 html 输出
  • 使用 innerhtml 写入 html 元素
  • 使用 console.log() 写入浏览器控制台

 

1. 使用 innerhtml

如需访问 html 元素,javascript 可使用 document.getelementbyid(id) 方法。

id 属性定义 html 元素。innerhtml 属性定义 html 内容:

范例

 

我的第一张网页

我的第一个段落

document.getelementbyid("demo").innerhtml = 5 + 6;

提示:更改 html 元素的 innerhtml 属性是在 html 中显示数据的常用方法。

 

2. 使用 document.write()

出于测试目的,使用 document.write() 比较方便:

范例

 

我的第一张网页

我的第一个段落

document.write(5 + 6);

注意:在 html 文档完全加载后使用 document.write() 将删除所有已有的 html :

范例

 

我的第一张网页

我的第一个段落

试一试

提示:document.write() 方法仅用于测试。

 

3. 使用 window.alert()

您能够使用警告框来显示数据:

范例

 

我的第一张网页

我的第一个段落

window.alert(5 + 6);

4. 使用 console.log()

在浏览器中,您可使用 console.log() 方法来显示数据。

请通过 f12 来激活浏览器控制台,并在菜单中选择“控制台”。

范例

 

我的第一张网页

我的第一个段落

console.log(5 + 6);

下一节:js 语句

js 教程

相关文章