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.
jqm を動的にロードしていますが、場合によってはすでにロードされているかどうかを知る必要があります。jqmがロードされているかどうかを知る方法はありますか?
if (jQuery.mobile) { console.log("jQuery Mobile is loaded"); }
このコードスニペットを使用してそれを確認できます
if($.mobile !== undefined){ console.log('jQuery mobile loaded'); }else{ //make your fall back; }