jquery isType() 类型判断代码
更新时间:2011年02月14日 19:10:21 作者:
jquery isType() 类型判断代码,需要的朋友可以参考下。
复制代码 代码如下:
class2type = {};
toString = Object.prototype.toString;
type: function( obj ) {
return obj == null ?
String( obj ) :
class2type[ toString.call(obj) ] || "object";
},
isFunction: function( obj ) {
return jQuery.type(obj) === "function";
},
isArray: Array.isArray || function( obj ) {
return jQuery.type(obj) === "array";
},
// A crude way of determining if an object is a window
isWindow: function( obj ) {
return obj && typeof obj === "object" && "setInterval" in obj;
},
isNaN: function( obj ) {
return obj == null || !rdigit.test( obj ) || isNaN( obj );
},
相关文章
jQuery lazyLoad图片延迟加载插件的优化改造方法分享
jQuery lazyLoad.js插件 是一款基于jquery框架,可以“实现”图片延迟加载的插件2013-08-08使用jQuery的ajax方法向服务器发出get和post请求的方法
这篇文章主要介绍了使用jQuery的ajax方法向服务器发出get和post请求的方法,需要的朋友可以参考下2017-01-01基于jquery的button默认enter事件(回车事件)。
这里我介绍一下,button按钮默认回车(enter)事件。如果大家可以用submit,就不用看以下代码,因为submit可以直接默认回车事件(enter)2011-05-05
最新评论