我正在使用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????????
});
答案 0 :(得分:2)