如何检测选择器是否返回null?

时间:2009-05-28 10:46:48

标签: jquery jquery-selectors

检测jQuery-selector是否返回空对象的最佳方法是什么。 如果你这样做:

alert($('#notAnElement'));

你得到[object Object],所以我现在的方式是:

alert($('#notAnElement').get(0));

将写入“undefined”,因此您可以检查它。但看起来非常糟糕。还有什么其他方式?

8 个答案:

答案 0 :(得分:476)

我最喜欢的是使用这个极小的便利来扩展jQuery:

$.fn.exists = function () {
    return this.length !== 0;
}

用过:

$("#notAnElement").exists();

比使用长度更明确。

答案 1 :(得分:192)

if ( $("#anid").length ) {
  alert("element(s) found")
} 
else {
  alert("nothing found")
}

答案 2 :(得分:63)

选择器返回一个jQuery对象数组。如果未找到匹配的元素,则返回空数组。您可以检查选择器返回的集合的.length,或检查第一个数组元素是否为“未定义”。

您可以在IF语句中使用任何以下示例,它们都会产生相同的结果。是的,如果选择器找到匹配的元素,否则为false。

$('#notAnElement').length > 0
$('#notAnElement').get(0) !== undefined
$('#notAnElement')[0] !== undefined

答案 3 :(得分:38)

我喜欢这样做:

$.fn.exists = function(){
    return this.length > 0 ? this : false;
}

那么你可以这样做:

var firstExistingElement = 
    $('#iDontExist').exists() ||      //<-returns false;
    $('#iExist').exists() ||          //<-gets assigned to the variable 
    $('#iExistAsWell').exists();      //<-never runs

firstExistingElement.doSomething();   //<-executes on #iExist

http://jsfiddle.net/vhbSG/

答案 4 :(得分:9)

我喜欢使用presence,灵感来自Ruby on Rails

$.fn.presence = function () {
    return this.length !== 0 && this;
}

你的例子变成了:

alert($('#notAnElement').presence() || "No object found");

我发现它优于提议的$.fn.exists,因为你仍然可以使用布尔运算符或if,但真正的结果更有用。另一个例子:

$ul = $elem.find('ul').presence() || $('<ul class="foo">').appendTo($elem)
$ul.append('...')

答案 5 :(得分:7)

我的偏好,我不知道为什么这还没有在jQuery中:

$.fn.orElse = function(elseFunction) {
  if (!this.length) {
    elseFunction();
  }
};

像这样使用:

$('#notAnElement').each(function () {
  alert("Wrong, it is an element")
}).orElse(function() {
  alert("Yup, it's not an element")
});

或者,正如在CoffeeScript中看到的那样:

$('#notAnElement').each ->
  alert "Wrong, it is an element"; return
.orElse ->
  alert "Yup, it's not an element"

答案 6 :(得分:6)

这是在JQuery文档中:

http://learn.jquery.com/using-jquery-core/faq/how-do-i-test-whether-an-element-exists/

  alert( $( "#notAnElement" ).length ? 'Not null' : 'Null' );

答案 7 :(得分:-1)

默认情况下,您可能一直想要这样做。我一直在努力包装jquery函数或jquery.fn.init方法来做到这一点而没有错误,但是您可以对jquery源进行简单的更改来做到这一点。包括一些您可以搜索的周围的线。我建议在jquery源中搜索The jQuery object is actually just the init constructor 'enhanced'

var
  version = "3.3.1",

  // Define a local copy of jQuery
  jQuery = function( selector, context ) {

    // The jQuery object is actually just the init constructor 'enhanced'
    // Need init if jQuery is called (just allow error to be thrown if not included)
    var result = new jQuery.fn.init( selector, context );
    if ( result.length === 0 ) {
      if (window.console && console.warn && context !== 'failsafe') {
        if (selector != null) {
          console.warn(
            new Error('$(\''+selector+'\') selected nothing. Do $(sel, "failsafe") to silence warning. Context:'+context)
          );
        }
      }
    }
    return result;
  },

  // Support: Android <=4.0 only
  // Make sure we trim BOM and NBSP
  rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g;

jQuery.fn = jQuery.prototype = {

最后但并非最不重要的一点,您可以在这里获取未压缩的jquery源代码:http://code.jquery.com/