我有一个有效的 HelloWorld phonegap 程序,其中安装了 jquery mobile,如下所述:http: //jquerymobile.com/demos/1.1.0/docs/about/getting-started.html。我为此添加了一些 javascript 来试验跨域资源共享:
<script>
$(document).bind("pageinit", function() {
$.support.cors = true;
$.mobile.allowCrossDomainPages = true;
$.mobile.changePage("http://jquery.com");
});
</script>
这在模拟器(2.3)上效果很好,jquery.com 是通过 jquery 移动演示加载的。但是,在实际的 2.3 Android 设备(运行 Cyanogen、Galaxy SII、Galaxy Player 的 T-mobile G2)上,changePage() 调用什么也不做。