如果我从我的 cms 编辑器中获取,<p></p>
是否可以删除空段落?我已经找到了如何在 wordpress 上删除的方法,但我现在使用 joomla,也许可以用 jquery 禁用空段落?
https://wordpress.stackexchange.com/questions/17248/how-to-disable-empty-p-tags-in-comment-text
如果我从我的 cms 编辑器中获取,<p></p>
是否可以删除空段落?我已经找到了如何在 wordpress 上删除的方法,但我现在使用 joomla,也许可以用 jquery 禁用空段落?
https://wordpress.stackexchange.com/questions/17248/how-to-disable-empty-p-tags-in-comment-text
$("p:empty").remove();
你要做的就是
看起来像工作,即使我建议使用.filter():
$('p:empty').remove();
使用过滤器():
$('p').filter(function() { return $.trim($(this).text()) === 0}).remove();
你可以使用jquery:
$("p").each(function () {
if ($(this).html().trim().length === 0) {
$(this).remove();
}
});