Plupload弄乱了jquery

时间:2012-10-18 22:08:29

标签: javascript jquery plupload

我正在使用图像上传器Plupload,它导致我的页面上的其他jquery出错。我已经弄清楚到底在做什么:

function $(id) {
    return document.getElementById(id); 
}

如果我把它拿出来,图像上传器不再有效,但是jquery可以。这里发布了很多代码,有没有人有另一种方法来调用这个函数,以便它可以与jquery一起使用?提前感谢您的帮助。

1 个答案:

答案 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';