我正在使用图像上传器Plupload,它导致我的页面上的其他jquery出错。我已经弄清楚到底在做什么:
function $(id) {
return document.getElementById(id);
}
如果我把它拿出来,图像上传器不再有效,但是jquery可以。这里发布了很多代码,有没有人有另一种方法来调用这个函数,以便它可以与jquery一起使用?提前感谢您的帮助。
答案 0 :(得分:2)
像这样使用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';