W3Schools 在线编辑工具(TIY) V3.0
编辑的代码:
运行代码 »
©
w3s.com.cn
运行结果窗口大小:
300 x 150
<
html
>
<
body
>
<
script
type
="text/javascript"
>
{
document.write(
"<h1>这是标题</h1>"
);
document.write(
"<p>这是段落。</p>"
);
document.write(
"<p>这是另一个段落。</p>"
);
}
<
/script
>
<
/body
>
<
/html
>
<html> <body> <script type="text/javascript"> { document.write("<h1>这是标题</h1>"); document.write("<p>这是段落。</p>"); document.write("<p>这是另一个段落。</p>"); } </script> </body> </html>