是否有此功能的 jQuery 版本?
string strip_tags ( string $str [, string $allowable_tags ] )
从字符串中去除所有标签和其中的内容,除了在允许的标签字符串中定义的标签。
喜欢:
var stripped = strip_tags($('#text').html(), '<p><em><i><b><strong><code>');
从:
<div id="text">
<p> paragraph </p>
<div> should be stripped </div>
</div>