http://stackoverflow.com/questions/822452/strip-html-from-text-javascript
function strip(html)
{
var tmp = document.createElement("DIV");
tmp.innerHTML = html;
return tmp.textContent || "";
}
http://stackoverflow.com/questions/822452/strip-html-from-text-javascript
function strip(html)
{
var tmp = document.createElement("DIV");
tmp.innerHTML = html;
return tmp.textContent || "";
}
本文标题:去除一段字符串中的HTML标签
本文链接:https://www.haomeiwen.com/subject/cddzmttx.html
网友评论