-4

如果我从我的 cms 编辑器中获取,<p></p>是否可以删除空段落?我已经找到了如何在 wordpress 上删除的方法,但我现在使用 joomla,也许可以用 jquery 禁用空段落?

https://wordpress.stackexchange.com/questions/17248/how-to-disable-empty-p-tags-in-comment-text

4

4 回答 4

2
$("p:empty").remove();

你要做的就是

于 2013-08-08T14:18:20.513 回答
1

这将找到p标签中没有文本的所有标签:

$('p').each(function() {
     if ($(this).text() == "") {
         $(this).remove();
     }
});

演示

于 2013-08-08T14:17:27.697 回答
1

看起来像工作,即使我建议使用.filter():

$('p:empty').remove();

使用过滤器():

$('p').filter(function() { return $.trim($(this).text()) === 0}).remove();
于 2013-08-08T14:18:22.170 回答
0

你可以使用jquery:

$("p").each(function () {  
    if ($(this).html().trim().length === 0) {
        $(this).remove();
    }
});
于 2013-08-08T14:17:29.763 回答