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