jQuery Mobile导航栏导航

时间:2013-07-08 16:41:39

标签: jquery jquery-mobile navbar

我正在使用jQuery Mobile开发我的第一个应用程序,我得到了一个问题(在网络上找不到任何内容)。我正在使用3页的导航栏。

第一页显示iframe内的一些维基百科内容(请记住)! 当我点击第二页(Approfondimenti)时,它会显示一个垂直菜单,其中包含一些我可以点击的元素。

我的jQuery函数所做的(通过点击第二页中的一个菜单元素)是将iframe的'src'更改为新的URL ...但我不知道如何回到第一个带有我的功能的页面,以便我的应用可以显示网址更改(不要手动点击第一页加载iframe内容)。

你能帮助我吗?

这是我的功能:

$(document).on('click', '.a', function(e){ // here i already am in the second page
       var appr=$(this).attr('id'); //here i get the URL from second page, i stored them in the elements id
   $('#iframe').attr('src',appr); //here i set new URL 
       //HERE WHAT TO DO????????
    });

enter image description here

1 个答案:

答案 0 :(得分:2)

将此添加到jQuery mobile中的更改页面:

 $.mobile.changePage("#page1");

链接:http://jsfiddle.net/androdify/q2LJX/9/