Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
サーバーにアップロードする前にagileUploaderを使用して画像のサイズを変更していますが、アップローダーの準備ができているかどうかを判断するのに問題があります。
参照ボタンの準備ができるまで、単純な「読み込み中」メッセージを表示する方法があるかどうか誰かが知っていますか?
ありがとう!
.holdReady()カスタムプラグインがロードされるまで、readyイベントを遅らせるために使用できます。
.holdReady()
例えば:
$.holdReady(true); $.getScript("myplugin.js", function() { $.holdReady(false); });
http://api.jquery.com/jQuery.holdReady/