从其他页面访问动态内容切换器

时间:2011-12-05 17:04:13

标签: jquery jquery-plugins jquery-selectors

我希望能够从网站上的每个其他页面访问菜单页面上的动态内容,但是使用下面的代码,它甚至在点击时都不会离开当前页面。我希望它能显示点击的确切内容。要显示的内容都在菜单页面上。网址为http://www.pizza.siteripe.com/menu.html我无法确定问题所在。

   <script type='text/javascript'>
$(document).ready(function() {
    jcps.fader(300, '#switcher-panel');
});


</script>  

1 个答案:

答案 0 :(得分:0)

您需要以某种方式重定向并显示内容:

$('#introright a').click(function() {
  if (window.location.href != 'http://www.pizza.siteripe.com/menu.html') {
    window.location.href = 'http://www.pizza.siteripe.com/menu.html#' + $(this).prop('id');
  }
});

然后在menu.html页面上:

$(document).ready(function() {
  if (window.location.hash) {
    $(window.location.hash).click();
  }
});

我是从记忆中写的,所以不要指望它能起作用。但你可能会很幸运。