0

画像アップローダー Plupload を使用していますが、ページにある他の jquery でエラーが発生しています。どの部分がそれを行っているかを正確に把握しました:

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

これを取り出すと、画像アップローダーは機能しなくなりますが、jquery は機能します。ここに投稿するコードはたくさんありますが、jquery で動作するようにこの関数を呼び出す別の方法はありますか? 助けてくれてありがとう。

4

1 に答える 1

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';
于 2012-10-18T22:16:00.190 に答える