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

$().text() 和 $().html()

时间:2015-10-29 23:05:02      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:

1:性能

stackflow:http://stackoverflow.com/questions/1910794/what-is-the-difference-between-jquery-text-and-html

demo:http://jsfiddle.net/PhJNX/

 

  • jQuery‘s .html() is ~2x faster than .text().
  • pure JS‘ .innerHTML is ~3x faster than .html().
  • pure JS‘ .nodeValue is ~50x faster than .html(), ~100x than .text(), and ~20x than .innerHTML.

2:安全

stackflow:http://stackoverflow.com/questions/9735045/is-jquery-text-method-xss-safe

demo:http://jsfiddle.net/TLu69/

$().text()更安全

$().text() 和 $().html()

标签:

原文地址:http://www.cnblogs.com/xnlc/p/4921933.html

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