W3Schools 在线编辑工具(TIY) V3.0
编辑的代码:
运行代码 »
©
w3s.com.cn
运行结果窗口大小:
300 x 150
<
html
>
<
body
>
<
h1
id
="header"
>
旧标题
<
/h1
>
<
script
type
="text/javascript"
>
document.getElementById(
'header'
).innerHTML=
"新标题"
<
/script
>
<
p
>
请注意,原始的文本是“旧标题”。
<
/p
>
<
/body
>
<
/html
>
<html> <body> <h1 id="header">旧标题</h1> <script type="text/javascript"> document.getElementById('header').innerHTML="新标题" </script> <p>请注意,原始的文本是“旧标题”。</p> </body> </html>