判断一个对象是否为jquery对象的方法
时间:2021-03-29 09:44:11|栏目:jquery|点击: 次
当我们在用jquery的each做循环遍历的时候常常会使用到this,而有时候我们不知道this所指的到底是什么,因为要使用jquery的方法 前提此对象必须是jquery对象。
另外要判断一个javascript的对象是什么类型,可以使用typeof,
但是typeof只能判断出js的基础对象(string,boolean,number,object)
判断一个对象是否为jquery对象可以用 obj instanceof jQuery
例如:
var obj = $("div");
if(obj instanceof jQuery){
alert("这是一个jQuery对象");
}else{
alert("这是一个其它对象")
}
$(".otherWeek").each(function(){
console.info(this instanceof jQuery); //false
console.info($(this) instanceof jQuery); //true
})
另外要判断一个javascript的对象是什么类型,可以使用typeof,
但是typeof只能判断出js的基础对象(string,boolean,number,object)
判断一个对象是否为jquery对象可以用 obj instanceof jQuery
例如:
复制代码 代码如下:
var obj = $("div");
if(obj instanceof jQuery){
alert("这是一个jQuery对象");
}else{
alert("这是一个其它对象")
}
复制代码 代码如下:
$(".otherWeek").each(function(){
console.info(this instanceof jQuery); //false
console.info($(this) instanceof jQuery); //true
})
栏 目:jquery
下一篇:jquery制做精致的倒计时特效
本文标题:判断一个对象是否为jquery对象的方法
本文地址:http://www.codeinn.net/misctech/90623.html