码迷,mamicode.com
首页 > Web开发 > 详细

html和text的区别

时间:2016-08-21 10:57:40      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

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

html和text的区别

标签:

原文地址:http://www.cnblogs.com/camille666/p/jquery_html_text.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!