由于您使用的是jQuery,因此只需设置元素的
text属性即可:
// before:// <div >text</div>var someHtmlString = "<script>alert('hi!');</script>";// set a DIV's text:$("div.someClass").text(someHtmlString);// after: // <div ><script>alert('hi!');</script></div>// get the text in a string:var escaped = $("<div>").text(someHtmlString).html();// value: // <script>alert('hi!');</script>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)