JQuery 简单选项卡导航
我想要一个简单的导航,不使用任何插件,而是使用简单的 JQuery。
链接 1 第 1 部分、第 2 部分、第 3 部分、第 4 部分
链接2
链接3
链接 4
当用户单击链接 1 时,显示 Div 1 并隐藏所有其他 div。然后,链接 2 显示 Div2 并隐藏所有其他部分。我想用更少的行数来做到这一点。
I want a simple navigation without using any plugin but simple JQuery.
Link 1 Div 1,Div 2,Div 3,Div 4
Link 2
Link 3
Link 4
When user clicks Link 1 show Div 1 and hide all other divs. Link 2 then show Div2 and hide all others. I want to do this with less number of lines.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
这是我一直使用的片段(原始):
JS:
css(这里有很多改进的地方呵呵):
标记:
希望有帮助
Here is a snippet I use all the time (original):
JS:
css (a lot of improvement area here hehe):
markup:
Hope it helps
我在 jsfiddle 为您制作了一个,希望对您有所帮助。干杯
I've made one for you at jsfiddle, hope this help. cheers
https://jqueryui.com/tabs/ 是一个插件,但它也算作简单的 jQuery。您考虑过这个选择吗?
https://jqueryui.com/tabs/ is a plugin but it also counts as simple jQuery. Have you considered that option?
您有什么理由不想使用插件吗?这是一个很棒的插件,可以满足您的所有要求: http://flowplayer.org/tools/标签/index.html
Any reason why you don't want to use a plugin? Here is a great plugin that will do everything you are asking: http://flowplayer.org/tools/tabs/index.html
这是一个简单的脚本,只需添加到您的文件中即可工作,并且与其他现有脚本没有冲突。
请参阅演示:http://simple-jquery-responsive-tab.blogspot.in/
here is a simple script, just add in your file and it will work, also no conflict with other existing scripts.
See demo: http://simple-jquery-responsive-tab.blogspot.in/
您可以在 jsFiddle 上检查这个 组件。
如果您想动态填充,也可以使用它。
});
You can check this component on jsFiddle.
It can also be used if you want to populate dynamically.
});