我想检查一个类名是否存在而不论其id或标记。
假设我的班级名称是“temp”。
我需要查看类似jQuery('.temp').length
- >的内容这不起作用
答案 0 :(得分:2)
jQuery.fn.exists = function(){
return jQuery(this).length>0;
}
if ($(selector).exists()) {
// Do something
}
答案 1 :(得分:0)
$('.temp').length
确实有用。