How do I check if a variable is a jQuery object or plain DOM element?
如何检查变量是jQuery对象还是普通DOM元素?
1 个解决方案
#1
39
- A jquery object has a
jquery
property. - jquery对象具有jquery属性。
- A jquery object is an
instanceof jQuery
(instanceof
on MDN) - jquery对象是jQuery的实例(MDN上的instanceof)
- A DOM element has a
nodeType
property - DOM元素具有nodeType属性
#1
39
- A jquery object has a
jquery
property. - jquery对象具有jquery属性。
- A jquery object is an
instanceof jQuery
(instanceof
on MDN) - jquery对象是jQuery的实例(MDN上的instanceof)
- A DOM element has a
nodeType
property - DOM元素具有nodeType属性