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