JavaScript的jQuery库中function的存在和参数问题
jQuery function 参数传递
jQuery的function函数中使用外部变量:
//如何取得i的变量 for(i=0;i<3;i++) { $.get("/test.html", function(data){ alert(i) }); } //使用闭包: for(i=0;i<3;i++) { (function(index){ $.get("/test.html", function(data){ alert(index) }); })(i) }
JavaScript、jQuery 检测某 function 是否存在
JavaScript 中检测某 function 是否存在的方法为:
if(typeof $form.validate == 'function') { console.log('该 function 存在'); } else { console.log('该 function 不存在'); }
例如: 需要检测一个 MD5 方法是否存在:
if(typeof window.md5 == 'function') { // 如果纯在该方法,才去调用 md5(286); }
而检测一个 jQuery 方法是否存在,可用一下方法:
if( jQuery.isFunction(jQuery.fn.rtFunction) ) { // 如果该方法存在,才去调用 jQuery(document).rtFunction(); }
相关推荐
hhanbj 2020-11-17
81427005 2020-11-11
EdwardSiCong 2020-11-23
85477104 2020-11-17
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
84483065 2020-09-11
momode 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28
tthappyer 2020-07-25
TONIYH 2020-07-22
tztzyzyz 2020-07-20
83510998 2020-07-18
81463166 2020-07-17