在一个phonegap jquery mobile index.html中,它有一个achor href到服务器端(http://mywebsite.com/products.html而不使用rel = external)。单击并加载后,如何确保products.html仍可访问index.html中的js文件。
似乎在加载product.html时,无法访问index.html中的.js文件。我不想在products.html中重复所有这些内容。这是什么解决方案?当不在PhoneGap和浏览器中运行时,index.html中的.js脚本文件仍然可用。
我正在使用最新版本的phonegap和Jquery mobile 1.3.0和jquery 1.7。
答案 0 :(得分:0)
如果你使用jquery mobile 就像你使用$ .load一样 所以你的脚本和样式表在yoursite中没有加载。 但是如果你将脚本和css放在data-role =“page”中,你的js和css就可以加载了.. 例如
<body>
<div data-role="page">
your js file and css file place in here for can be load
</div>
</body>