标签:
1、html
<div id="divShow"><b><i>Write Less Do More</i></b></div> var str1 = $("#divShow").html(); document.write(str1);
结果是:<b><i>Write Less Do More</i></b>
2、text
<div id="divShow"><b><i>Write Less Do More</i></b></div> var str2 = $("#divShow").text(); document.write(str2);
结果是Write Less Do More
标签:
原文地址:http://www.cnblogs.com/camille666/p/jquery_html_text.html