W3Schools 在线编辑工具(TIY) V3.0
编辑的代码:
运行代码 »
©
w3s.com.cn
运行结果窗口大小:
300 x 150
<
!DOCTYPE
html
>
<
html
>
<
body
>
<
p
id
="p1"
>
Hello World!
<
/p
>
<
script
>
document.getElementById(
"p1"
).innerHTML=
"New text!"
;
<
/script
>
<
p
>
上面的段落被一条 JavaScript 脚本修改了。
<
/p
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <body> <p id="p1">Hello World!</p> <script> document.getElementById("p1").innerHTML="New text!"; </script> <p>上面的段落被一条 JavaScript 脚本修改了。</p> </body> </html>