从另一个页面访问动态内容切换器

发布于 2024-12-19 18:08:36 字数 374 浏览 0 评论 0原文

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

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


</script>  

I want to be able to access the dynamic content on the Menu page from every other page on the website but with the code below, it doesn't even leave the current page when clicked on. I'd like it to display the exact content that was clicked on. The contents to be displayed are all on the menu page. The URL is http://www.pizza.siteripe.com/menu.html I can't tell what the problem is.

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


</script>  

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冷月断魂刀 2024-12-26 18:08:36

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

$('#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();
  }
});

我凭记忆写了这个,所以不要指望它能工作。但你可能会幸运。

You'll need to redirect somehow and show the content:

$('#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');
  }
});

Then on the menu.html page:

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

I wrote this from memory so don't expect it to work. But you might get lucky.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文