我已經在使用this fallback method for a CDN hosted copy of jQuery,但現在我想爲jqMobile做同樣的事情,如果可能的話。我想知道什麼變量可以在本地jQuery Mobile副本上回退?
他們提供了他們的CDN in the getting started guide,所以這顯然是第1步。但是,如果我要使用jQuery包含的類似解決方案,我必須檢查是否存在變量。我可以檢查以確定CDN jqMobile是否包含成功?
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
<script type="text/javascript">
if (typeof ?????? == 'undefined')
{
document.write(unescape("%3Cscript src='/path/to/your/jquery-mobile.js' type='text/javascript'%3E%3C/script%3E"));
}
</script>
完美,謝謝! –