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.
次のような単純な jQuery UI 関数:
(function($) { $('ui').sortable(); })(jQuery);
通常は jQuery UI が存在しないことを示すエラーが発生します。
Uncaught TypeError: Object [object Object] has no method 'sortable'
ただし、Chrome の開発者ツールは、それが読み込まれていることを確認します。調子はどう?
答えは単純に、jQuery の略記を使用するのをやめることでした。これ:
になります:
jQuery(document).ready(function($){ $('ui').sortable(); });