document.write中输出html标签用法

时间:2024-10-21 16:37:26

输出HTML标签,只需将标签写入双引号:

示例:在网页中输出<p>革命还在继续</p>

document.write("<p style='border:1px solid black;width:300px;height:90px;

line-height:90px;background:#abcdef;text-align:center;'> 革命还在继续</p>");

注意:

连接字符串,用加号"+";

字符串用双引号""括起来。