Answers:
我最喜欢的是使用这种微小的便利来扩展jQuery:
$.fn.exists = function () {
return this.length !== 0;
}
像这样使用:
$("#notAnElement").exists();
比使用长度更明确。
this
比更有帮助true
。请参阅我的答案移植Rails的presence
方法。
this
给变量,则建议将return语句更改为CSharp的内容。
选择器返回一个jQuery对象数组。如果找不到匹配的元素,它将返回一个空数组。您可以检查.length
选择器返回的集合的,或检查第一个数组元素是否为'undefined'。
您可以在IF语句中使用以下任何示例,它们都将产生相同的结果。如果选择器找到匹配的元素,则为true,否则为false。
$('#notAnElement').length > 0
$('#notAnElement').get(0) !== undefined
$('#notAnElement')[0] !== undefined
我喜欢做这样的事情:
$.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
TypeError: firstExistingElement.doSomething is not a function
。您可以在包装,如果整个变量赋值/测试(),只有做一些事情,如果一个元素被发现....
我喜欢使用Ruby on Rails的presence
启发:
$.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('...')
我的偏好,我不知道为什么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"
这在JQuery文档中:
http://learn.jquery.com/using-jquery-core/faq/how-do-i-test-whether-an-element-exists/
alert( $( "#notAnElement" ).length ? 'Not null' : 'Null' );
默认情况下,您可能一直想要这样做。我一直在努力包装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/