var selector = '#Id-value_' + index;
var exist = $(selector).exists();
我收到这条代码的错误。
我的文档就绪功能是
$(document).ready(function() {
});
答案 0 :(得分:8)
jQuery中没有exists()
函数。但你可以快速写一个:
// Add a new function to jQuery
jQuery.fn.exists = function(){ return this.length > 0; }
// Sadly, we cannot use ES6 arrow functions here. It
// would be nice if we could do this:
// jQuery.fn.exists = () => this.length > 0;
//now let's test it
if ($(selector).exists()) {
// Do something
}
或者,只需检查.length
属性不等于0
:
if ($(selector).length) {
// will go here if at least one node matched
}
答案 1 :(得分:3)
根据@ K48答案,您还可以使用$(selector).length
直接检查是否存在。
var selector = '#Id-value_' + index;
if ($(selector).length) {
// Do something
}