我正在使用图像上传器 Plupload,它导致我页面上的其他 jquery 出现错误。我已经弄清楚到底是什么部分在做它:
function $(id) {
return document.getElementById(id);
}
如果我把它拿出来,图像上传器不再工作,但 jquery 可以。这里要发布很多代码,有没有人有另一种方法来调用这个函数,以便它与 jquery 一起工作?提前感谢您的帮助。
我正在使用图像上传器 Plupload,它导致我页面上的其他 jquery 出现错误。我已经弄清楚到底是什么部分在做它:
function $(id) {
return document.getElementById(id);
}
如果我把它拿出来,图像上传器不再工作,但 jquery 可以。这里要发布很多代码,有没有人有另一种方法来调用这个函数,以便它与 jquery 一起工作?提前感谢您的帮助。
像这样使用 jQuery:
jQuery(function($){
//Your jQuery code here
// Use $ alias worry-free of conflicts
alert('You are using jQuery ' + $().jquery );
});
或者
(function($){
//Your jQuery code here
})(jQuery);
或者
$.noConflict();
jQuery(document).ready(function($) {
// Code that uses jQuery's $ can follow here.
});
// Code that uses other library's $ can follow here.
或者
var j = jQuery.noConflict();
// Do something with jQuery
j("div p").hide();
// Do something with another library's $()
$("content").style.display = 'none';