如何在两个不同页面之间导航时打开div?

时间:2014-09-30 09:52:16

标签: jquery

我有两页,即

Customer.html
index.html

我正在从一个页面重定向到另一个页面,如图所示

Customer.html

  window.location = "customer/index.html?qruuid="+uuid;

的index.html

我正在检索qruuid值并重定向回Customer.html

else if(qruuid!='')
 {
window.location = "../Customer.html?UUID="+qruuid;

 }

我的问题是,当我重定向时(从index.html到Customer.html)页面

是否可以显示具有特定div打开的Customer.html?

那就是我有一个名为" restaurantmenu"在Customer.html下,我想在重定向时显示处于打开状态

$("#restaurantmenu").show();

2 个答案:

答案 0 :(得分:1)

从index.HTML重定向到customer.HTML时,可以再添加一个参数。

之类的东西
window.location = "../Customer.html?UUID="+qruuid+";isDivOpen=true;";

检索参数isDivOpen,如果是,则为true。然后

$("#restaurantmenu").show();

答案 1 :(得分:1)

如果返回网址为"../Customer.html?UUID="+qruuid

$(document).ready(function() {
  s = location.search;
  if(s.indexOf('qruuid') != -1) {
   $("#restaurantmenu").show();
  }
});