从另一个页面访问动态内容切换器
我希望能够从网站上的每个其他页面访问“菜单”页面上的动态内容,但使用下面的代码,单击时它甚至不会离开当前页面。我希望它显示点击的确切内容。显示的内容均在菜单页上。网址是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要以某种方式重定向并显示内容:
然后在
menu.html
页面上:我凭记忆写了这个,所以不要指望它能工作。但你可能会幸运。
You'll need to redirect somehow and show the content:
Then on the
menu.html
page:I wrote this from memory so don't expect it to work. But you might get lucky.