使用jQuery转义HTML字符串

使用jQuery转义HTML字符串,第1张

使用jQuery转义HTML字符串

由于您使用的是jQuery,因此只需设置元素的

text
属性即可:

// before:// <div >text</div>var someHtmlString = "<script>alert('hi!');</script>";// set a DIV's text:$("div.someClass").text(someHtmlString);// after: // <div >&lt;script&gt;alert('hi!');&lt;/script&gt;</div>// get the text in a string:var escaped = $("<div>").text(someHtmlString).html();// value: // &lt;script&gt;alert('hi!');&lt;/script&gt;


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5147442.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-17

发表评论

登录后才能评论

评论列表(0条)

保存