JQuery Mobile Change Page不会加载JS文件 [英] JQuery Mobile Change Page doesnt load JS files

查看:102
本文介绍了JQuery Mobile Change Page不会加载JS文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

为了更好地组织我们的JQuery Mobile PhoneGap应用程序,我希望能够在新页面上使用标签,并在页面被引入时使用changePage或其他东西进入JS。

In an effort to better organize our JQuery Mobile PhoneGap application I would like to be able to use tags on the new page and have that JS come in when the page is brought in, with changePage or something other.

到目前为止,我这样做的努力并没有产生我想要的东西。除非我在index.html上包含所有JS文件,然后在PageShow事件处理程序中编写条件逻辑,这不是一个好的解决方案。

So far, my efforts to do this have not yielded what I am looking for. Unless I include all JS files on index.html and then write conditional logic in the PageShow event handler, which is not a good solution.

有什么想法吗?

推荐答案

为了向jQuery Mobile加载(通过AJAX)页面引入新的JS包含,您必须在<$ c $中引用这些文件c> data-role =page或( data-role =dialog)每个页面的元素因为jQuery Mobile不处理任何内容在AJAX页面加载期间在这些元素之外。

To introduce new JS includes to pages loaded (via AJAX) with jQuery Mobile you must have the references to those files within the data-role="page" or (data-role="dialog") elements of each page because jQuery Mobile does not process anything outside of those elements during AJAX page loads.

或者,您可以使用JavaScript在每个页面的pageshow事件中动态创建新的脚本标记过渡。这样的事情:

Alternatively, you could use JavaScript to create the new script tags dynamically on the 'pageshow' event of each page transition. Something like this:

$(document).on('pageshow', 'div[data-role*="page"],div[data-role*="dialog"]', function () {
     (function () {
        var script = document.createElement('script'); script.type = 'text/javascript'; script.async = true;
        script.src = '/path/to/new/include.js';
        var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(script, s);
    })();
});

这篇关于JQuery Mobile Change Page不会加载JS文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆