有恒ccs

导航

jq取出带html标签的文本

function getSimpleText(html) {
var re1 = new RegExp("<.+?>", "g");//匹配html标签的正则表达式,"g"是搜索匹配多个符合的内容
var msg = html.replace(re1, '');//执行替换成空字符
return msg;
}

posted on 2021-11-16 18:04  有恒ccs  阅读(119)  评论(0编辑  收藏  举报