与其他库一起使用jQuery(2)

Java代码

var $j = jQuery;      如果你想使用其它不同的库,这或许是最好的方法。
  使用下列方法,可以指定在一块代码内使用"$":

Java代码

function($) { // some code that uses $ })(jQuery)     备注:如果你使用了这种方法,在这块代码中你将不能使用"$"来调用Prototype方法,因为你选择了在这块代码中唯一使用jQuery方法。
  使用以下方法来实现DOM ready event:

Java代码

jQuery(function($) { // some code that uses $ }); 

备注:同样,在这个代码块里你也还有调用Prototype方法。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wysfyy.html