菜单切换
FACESOHO知行者
心灵
记录
远方
赞赏工具
源代码:
点击运行
保存
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>小鸟启蒙(facesoho.com)</title> </head> <body> <script id="facesoho1"> document.write("Hello facesoho!"); </script> <p>点击按钮遍历文档中所有的 script 元素,并输出每个 script 元素的 id:。</p> <button onclick="myFunction()">点我</button> <p id="demo"></p> <script id="facesoho2"> function myFunction() { var x = document.scripts; var txt = ""; var i; for (i = 0; i < x.length; i++) { txt = txt + x[i].id + "<br>"; } document.getElementById("demo").innerHTML = txt; } </script> </body> </html>
运行结果