0

在 phonegap jquery mobile index.html 中,它有一个到服务器端的 achor href(http://mywebsite.com/products.html 并且不使用 rel=external)。当它被点击并加载时,你如何确保你的 index.html 中的 js 文件仍然可以被 products.html 访问。

似乎在加载 product.html 时,无法访问 index.html 中的 .js 文件。我不想在 products.html 中重复所有这些。解决方案是什么?当不在 PhoneGap 和浏览器中运行时,index.html 中的 .js 脚本文件似乎仍然可用。

我正在使用最新版本的 phonegap 和 Jquery mobile 1.3.0 和 jquery 1.7。

4

1 回答 1

0

如果您使用 jquery mobile,则使用它就像使用 $.load 一样,因此您的站点中的脚本和样式表不会加载。但是,如果您将脚本和 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>
于 2013-07-20T01:45:10.613 回答