如何使用jQuery检查HTML元素是否为空?


336

我试图使用jQuery仅在HTML元素为空时调用函数。

像这样:

if (isEmpty($('#element'))) {
    // do something
}

$('#elem').text().match(/\S/) || alert('empty');
Thielicious

Answers:


557
if ($('#element').is(':empty')){
  //do something
}

有关更多信息,请参见http://api.jquery.com/is/http://api.jquery.com/empty-selector/

编辑:

正如某些人指出的,浏览器对空元素的解释可能会有所不同。如果您想忽略不可见的元素(例如空格和换行符)并使实现更加一致,则可以创建一个函数(或仅使用其中的代码)。

  function isEmpty( el ){
      return !$.trim(el.html())
  }
  if (isEmpty($('#element'))) {
      // do something
  }

您也可以将其放入jQuery插件,但您知道了。


56
换行符被视为FF和Chrome中元素的内容。
Corneliu

@Corneliu是正确的。我在下面发布了一个考虑到这一点的答案。这是挫折的主要来源为我在最近的一个项目
DMTintner

2
真是太好了

HTML注释也被视为内容。
Paolo

使用一个函数来完成此操作当然很好,但是如果您希望它更“嵌入”(并且有点挑战),我建议您操纵jQuery的原型或使用JQ的强大的“过滤器”功能...
TheCuBeMan

117

我发现这是唯一可靠的方法(因为Chrome和FF将空格和换行符视为元素):

if($.trim($("selector").html())=='')

20
稍微压缩一点的版本可以利用空字符串的虚假性: if(!$.trim($("selector").html())
Brandon Belvin

11
我认为他们不认为它们是“元素”,但他们认为它们是节点,这是IMO正确的。你也可以做if($("selector").children().length === 0)if($("selector > *").length === 0)
panzi 2014年

1
我认为您将“元素”与“节点”混淆了。

1
$(“ selector”)。html()。trim()===”
user1156544

1
我不知道为什么,但是这个答案的方法:if($。trim($(“ selector”)。html())=='')工作。.is(':empty')没有!
Zeljko Miloradovic

62

空格和换行符是使用:empty选择器的主要问题。小心,在CSS中:empty伪类的行为方式相同。我喜欢这种方法:

if ($someElement.children().length == 0){
     someAction();
}

4
我之所以选择以上内容,是因为我的DIV中有HTML注释。
Paolo

2
到目前为止,最优雅的解决方案应该是正确的答案。
Christoffer Bubach

6
需要注意的是$.children()不返回文本或注释节点,这意味着该解决方案只检查是该元素为空的元素。如果仅包含文本或注释的元素应该被认为是空的,那么您应该使用其他解决方案之一。
sierrasdetandil

@sierrasdetandil的select元素是完美的。条件也可以if(! $el.children().length)
CPHPython

28
!elt.hasChildNodes()

是的,我知道,这不是jQuery,因此您可以使用以下代码:

!$(elt)[0].hasChildNodes()

现在开心?


1
+1我在jQuery filter函数内使用了您的方法,因为除非有必要,否则我不想在该函数内使用jQuery。
WynandB 2014年

1
如果我认为仅空白为空<div class="results"> </div>,则此语句将返回false。jsfiddle.net/ytliuSVN/0pdwLt46
Penny Liu


12

如果用“空”表示没有HTML内容,

if($('#element').html() == "") {
  //call function
}

小心,空格和换行符可能导致html并非=='',但元素仍为空。请在下面查看我的答案以寻求其他解决方案
DMTintner

8

为空,如无文字?

if (!$('#element').text().length) {
    ...
}

这不会解决内容为图像的元素(不要问我是怎么想的...)
错误的请求

@BadRequest否,因此“ as in中包含任何文字?” 之后的问号 :)
jensgram '17

7

在履历表中,有许多选项可以找出元素是否为空:

1-使用html

if (!$.trim($('p#element').html())) {
    // paragraph with id="element" is empty, your code goes here
}

2-使用text

if (!$.trim($('p#element').text())) {
    // paragraph with id="element" is empty, your code goes here
}

3-使用is(':empty')

if ($('p#element').is(':empty')) {
    // paragraph with id="element" is empty, your code goes here
}

4-使用 length

if (!$('p#element').length){
    // paragraph with id="element" is empty, your code goes here
}

如果您想找出输入元素是否为空,可以使用以下方法val

if (!$.trim($('input#element').val())) {
    // input with id="element" is empty, your code goes here
}

2

html()或相比,浏览器需要较少“工作”的另一种选择children()

function isEmpty( el ){
  return !el.has('*').length;
}

1
document.getElementById("id").innerHTML == "" || null

要么

$("element").html() == "" || null

0

你可以试试:

if($('selector').html().toString().replace(/ /g,'') == "") {
//code here
}

*替换空格,以防万一;)


会不会!/[\S]/.test($('Selector').html())更好地工作,一旦你发现一些空白,你知道它不是空
qwertymk

为什么在正则表达式标志中使用/ i?有空格字符的大小写吗?
Alexis Wilke 2014年

谢谢,更新了我的答案。我不知道为什么要添加/ i
Marc Uberstein 2014年

1
@RobertMallow,也许正则表达式支持\ S,但是Unicode将空格定义为Cc,Zs,Zl,Zp,如下所示:unicode.org/Public/UNIDATA/PropList.txt –大写为Lu ...
Alexis Wilke

1
@RobertMallow,同样The production CharacterClassEscape :: S evaluates by returning the set of all characters not included in the set returned by CharacterClassEscape :: s.来自ecma-international.org/ecma-262/5.1/#sec-15.10.2.12
Alexis Wilke




-1

的JavaScript

var el= document.querySelector('body'); 
console.log(el);
console.log('Empty : '+ isEmptyTag(el));
console.log('Having Children : '+ hasChildren(el));


function isEmptyTag(tag) { 
    return (tag.innerHTML.trim() === '') ? true : false ;
}
function hasChildren(tag) {
    //return (tag.childElementCount !== 0) ? true : false ; // Not For IE
    //return (tag.childNodes.length !== 0) ? true : false ; // Including Comments
    return (tag.children.length !== 0) ? true : false ; // Only Elements
}

尝试使用任何一种!

document.getElementsByTagName('div')[0];
document.getElementsByClassName('topbar')[0];

document.querySelectorAll('div')[0];
document.querySelector('div'); // gets the first element.


-2

换行符被视为FF中元素的内容。

<div>
</div>
<div></div>

例如:

$("div:empty").text("Empty").css('background', '#ff0000');

在IE中,两个div都被认为是空的,而在FF中,Chrome仅将最后一个为空。

您可以使用@qwertymk提供的解决方案

if(!/[\S]/.test($('#element').html())) { // for one element
    alert('empty');
}

要么

$('.elements').each(function(){  // for many elements
    if(!/[\S]/.test($(this).html())) { 
        // is empty
    }
})
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.