1
lijsh 2014 年 6 月 19 日 via Android
写个函数封装下就不笨了,哈哈
|
2
yyfearth 2014 年 6 月 19 日
哪里笨了 不就这样么
如果你只有字符串 那么也就是 (类似) var $content = $(content_html_string); content.find('xxx').remove(); var content = content.html() 如果你想用regex处理string那就更麻烦而且不靠普了 |
3
yyfearth 2014 年 6 月 19 日
抱歉 第二行应该是 $content.find('.class-1, .class-2, .class-3').remove();
|
4
icanfork 2014 年 6 月 19 日
$(content_html_string).find('class').remove();
|
5
switch 2014 年 6 月 19 日
可以这样:
$("#content").clone().find(".class-1, .class-2, .class-3").remove().end(); |
6
switch 2014 年 6 月 19 日
$("#content").clone().find(".class-1, .class-2, .class-3").remove().end().html()
|
7
justfindu 2014 年 6 月 19 日
你这个方法so 机智 ...
|