JavaScript 输出显示内容(document.write、alert、innerHTML、console.log)
javascript 输出
javascript 没有任何打印或者输出的函数。
javascript 显示数据
javascript 可以通过不同的方式来输出数据:
使用 window.alert()
弹出警告框。
使用 document.write()
方法将内容写到 html 文档中。
使用 innerhtml
写入到 html 元素。
使用 console.log()
写入到浏览器的控制台。
使用 window.alert()
你可以弹出警告框来显示数据:
<!doctype html> <html> <body> <h1>我的第一个页面</h1> <p>我的第一个段落。</p> <script> window.alert(5 + 6); </script> </body> </html>
操作 html 元素
如需从 javascript 访问某个 html 元素,您可以使用 document.getelementbyid(id) 方法。
请使用 "id" 属性来标识 html 元素,并 innerhtml 来获取或插入元素内容:
<!doctype html> <html> <body> <h1>我的第一个 web 页面</h1> <p id="demo">我的第一个段落</p> <script> document.getelementbyid("demo").innerhtml = "段落已修改。"; </script> </body> </html>
以上 javascript 语句(在 <script> 标签中)可以在 web 浏览器中执行:
document.getelementbyid("demo") 是使用 id 属性来查找 html 元素的 javascript 代码 。
innerhtml = "段落已修改。" 是用于修改元素的 html 内容(innerhtml)的 javascript 代码。
在本教程中
在大多数情况下,在本教程中,我们将使用上面描述的方法来输出:
下面的例子直接把 id="demo" 的 <p> 元素写到 html 文档输出中:
写到 html 文档
出于测试目的,您可以将javascript直接写在html 文档中:
<!doctype html> <html> <body> <h1>我的第一个 web 页面</h1> <p>我的第一个段落。</p> <script> document.write(date()); </script> </body> </html>
请使用 document.write() 仅仅向文档输出写内容。
如果在文档已完成加载后执行 document.write,整个 html 页面将被覆盖。
<!doctype html> <html> <body> <h1>我的第一个 web 页面</h1> <p>我的第一个段落。</p> <button onclick="myfunction()">点我</button> <script> function myfunction() { document.write(date()); } </script> </body> </html>
写到控制台console.log()
如果您的浏览器支持调试,你可以使用 console.log() 方法在浏览器中显示 javascript 值。
浏览器中使用 f12 来启用调试模式, 在调试窗口中点击 "console" 菜单。
<!doctype html> <html> <body> <h1>我的第一个 web 页面</h1> <script> a = 5; b = 6; c = a + b; console.log(c); </script> </body> </html>
实例 console 截图:
程序中调试是测试,查找及减少bug(错误)的过程。
注意这个console.log() 对于ie8及以下版本会报错,测试后注意注释掉。