0

p要素が空の場合、jQueryを使用してクラスが.last_editのap要素を非表示にします。例

<p class="last_edit"></p>

<p class="last_edit">This would be displayed since there is text in it</p>

誰かがどのようにtを知っていますか

4

3 に答える 3

3

多くの方法があります

$(".last_edit:empty").hide();

また

$(".last_edit").each(function() {

    if($.trim($(this).html()).length > 0) {
       $(this).hide();
    }

});
于 2012-10-07T04:15:59.090 に答える
3

または、次のようにCSSで非表示にすることができます。

.last_edit:empty {display:none;}
于 2014-01-30T12:57:45.063 に答える
1

:emptyセレクターを使用できます。

$('p.last_edit:empty').hide();

またはfilter方法:

$('p.last_edit').filter(function(){
     return $.trim($(this).text()) === ''
}).hide()
于 2012-10-07T04:15:44.240 に答える