手册
目录
收藏327
分享
阅读9466
更新时间2022-04-11
如有疑问欢迎到这些地方交流,欢迎加入JSLite.io组织团伙共同开发!
判断对象是否为【document】。
$.isDocument(document) //⇒ true
确定参数是否为一个窗口(window对象),如果是则返回true。这在处理iframe时非常有用,因为每个iframe都有它们自己的window对象,使用常规方法obj==window校验这些objects的时候会失败。
判断对象是否为函数【function】。
$.isFunction(function(){}) //⇒ true判断是否为
Object。
$.isObject({}) //⇒ true
$.isPlainObject(object) ⇒ boolean
如果通过 "{}" 或者 "new Object" 创建的则返回true。判断对象是否是纯粹的对象。
$.isPlainObject({}) // => true
$.isPlainObject(new Object) // => true
$.isPlainObject(new Date) // => false
$.isPlainObject(window) // => false判断是否为【数组】。
$.isArray([1,2,3]) //⇒ true
判断是否为【数组】。
$.isJson({}) //⇒ true
$.contains(parent, node) ⇒ booleanparent是否包含node节点对象。
$.contains($("#box")[0],$(".boxss")[0]) //⇒ parent是否包含node节点对象判断对象是否为数组或者是字符。
$.likeArray([1,2,3]) //⇒ true
$.likeArray("222") //⇒ true获取JavaScript 对象的类型。可能的类型有:
nullundefinedbooleannumberstringfunctionarraydateregexpobjecterror。
$.type(true) //⇒ Boolean
$.type("div") //⇒ String如果当前节点能被指定的css选择器查找到,则返回
true,否则返回false。$.matches(element,selector) ⇒ boolean
$.matches($("#box")[0], "#box")//⇒ true判断当前匹配的元素集合中的元素,是否为一个选择器,DOM元素 is(selector) ⇒ boolean
is(element) ⇒ boolean
$("#box").is("div"); //⇒ true
$("#box").is("#box"); //⇒ true
$("#box").is("#boxsss"); //⇒ false
$("div").is($("#box")[0]) //⇒ true 节点是否在 $("#box")[0] 是否再集合中相关
视频
RELATED VIDEOS
科技资讯
1
2
3
4
5
6
7
精选课程
共5课时
17.2万人学习
共49课时
77.2万人学习
共29课时
61.9万人学习
共25课时
39.4万人学习
共43课时
71.1万人学习
共25课时
61.8万人学习
共22课时
23万人学习
共28课时
34万人学习
共89课时
125.5万人学习