无论如何检测是否加载了jquery-mobile /或任何其他库?
我知道我可以像How to enable a jQuery Mobile button?那样做一个简单的$('#button').button('enable');
但是为了好玩,我只想知道是否有任何方法可以检测是否加载了库,然后执行代码上述
答案 0 :(得分:19)
您可以检查其中一个功能是否存在。
if ( $.mobile ) {
//jq mobile loaded
} else {
// not
}
答案 1 :(得分:2)
这是你用jQM做的方法:
$(document).bind("mobileinit", function(){
//apply overrides here
});
这是jQM开始执行的时刻。它只执行一次。
您可以在此处详细了解:http://jquerymobile.com/demos/1.0.1/docs/api/globalconfig.html
但在你的情况下它有点不同。您需要等待加载DOM以更改页面内容中的内容,该案例的最佳jQM实践是pagebeforeshow事件:
$('#pageID').live('pagebeforeshow', function (event) {
// Some code here
});