jQuery提供了两个API可以直接用来为元素添加内容。
html()
text()
html()
是为指定的元素添加html内容text()
是为指定的元素添加文本内容<body> <p></p> </body>
html()
$('p').html('<strong>Hello World</strong>, I am a <em><p></em> element.');页面效果为
Hello World, I am a <p> element.
text()
$('p').text('<strong>Hello World</strong>, I am a <em><p></em> element.');
jQuery -> 获取/设置HTML或TEXT内容,布布扣,bubuko.com
原文地址:http://blog.csdn.net/feelang/article/details/26577563