菜鸟学堂
在线运行
源代码
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鸟学堂(edu.jb51.net)</title> </head> <body> <p id="demo">单击按钮来显示该文档的位置</p> <button onclick="myFunction()">点我</button> <script> function myFunction(){ var x=document.getElementById("demo"); x.innerHTML=document.documentURI; } </script> <p><strong>注意:</strong>Internet Explorer不支持documentURI属性。</p> </body> </html>
运行结果
在线运行
菜鸟学堂 edu.jb51.net