WEB开发网
开发学院网页设计JavaScript jQuery点滴细节 保证代码安全 阅读

jQuery点滴细节 保证代码安全

 2010-10-23 08:12:36 来源:WEB开发网   
核心提示:在多人合作开发中一定要确保变量,对象,jQuery点滴细节 保证代码安全,函数等命名不要冲突:方法一:当别人使用了其他的js库,并该库使用了”$”变量,然后把jQuery作为参数传递给它,那么在这个函数体中的$是不会影响外面或者被外面影响的,那么我们可以使用noConflict()方法:var

在多人合作开发中一定要确保变量,对象,函数等命名不要冲突:
方法一:当别人使用了其他的js库,并该库使用了”$”变量,那么我们可以使用noConflict()方法:

var j = jQuery.noConflict(); 

// Now, instead of $, we use j. 

j('#someDiv').hide();  

// The line below will reference some other library's $ function. 

$('someDiv').style.display = 'none';

方法二,把你的代码放在一个匿名函数里面,然后把jQuery作为参数传递给它,那么在这个函数体中的$是不会影响外面或者被外面影响的。

(function($) { 

// Within this function, $ will always refer to jQuery 

})(jQuery);

方法三,通过ready方法传递$

jQuery(document).ready(function($) { 

// $ refers to jQuery 

}); 

// $ is either undefined, or refers to some other library's function.
或者使用简写:
$(function() { 

// let's get up in heeya 

});
 

Tags:jQuery 点滴 细节

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接