要删除 标记,而不 除去 content ,这就是PHP的
strip_tags()行为,您可以执行以下 *** 作:
var whitelist = "p"; // for more tags use the multiple selector, e.g. "p, img"$("#text *").not(whitelist).each(function() { var content = $(this).contents(); $(this).replaceWith(content);});
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)