本文介绍了载入中jQuery Mobile的多页文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我正在通过AJAX使用jQuery / jQuery Mobile的框架装载两个独立的HTML文件。但是,当我打开第二个文件,它只是加载了第一个div页面的作用。上班什么办法解决此问题?

解决方案

这是由设计。当连接多页文档使用相对=外部数据AJAX =假

 < A HREF =multipage.html相对=外部>多页链接< / A>
 

如果改变网页编程方式使用

  $ mobile.ajaxEnabled = FALSE。
$ .mobile.changePage(multipage.html);
 

I have two separate html file that are being loaded via ajax using jquery/jquery mobile framework. But when I load the second file, it only loads the first div the the role of page. Any way to work around this?

解决方案

It is by design. When linking a multipage document use rel="external" or data-ajax="false"

<a href="multipage.html" rel="external">Multi-page link</a>

If changing pages programmatically use

$.mobile.ajaxEnabled = false;
$.mobile.changePage("multipage.html");

这篇关于载入中jQuery Mobile的多页文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 22:53