如何创建自定义 jquery 选项卡?
我有一个特定的场景:
我有 4 个选项卡,每个选项卡都有自己的 2 个图标,用于指示何时选择或不选择。
我想要做的是,当我单击选项卡时图标会发生变化,当我单击另一个选项卡时会更改为另一个图标。
PS 我说的是选项卡本身,而不是容器的内容。
谢谢
i have this specific scenario:
i have 4 tabs and each tab has it's own 2 icons for when it's selected or not.
what i want to do is for the icon to change when i click the tab and change to another icon when i click another tab.
p.s. i am talking about the tabs itself and not about the content of the containers.
thanks
check this image:
http://answers.oreilly.com/index.php?app=core&module=attach§ion=attach&attach_rel_module=post&attach_id=621
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设每个选项卡都有自己的 css 类,您可以在 CSS 中为选项卡中的每个图片使用
background-image
。然后,当选择选项卡时(您可以添加一个类,表示它已被选择,例如“已选择”或其他内容),然后给出不同的图像
例如:
Assuming each tab has their own css class, you could use
background-image
in CSS for each of the pictures in the tabs.Then, when the tab is selected (which you could then add a class saying it's selected like "selected" or something) and then give a different image
For example:
如果您使用 ui 选项卡,则选定的类将应用于活动选项卡。如果您不是,我确信您可以自己应用它。然后你需要做的就是在 css 中提供图像作为背景。
If you are using ui tabs a selected class is applied to the active tab. If you're not I'm sure that you can apply it yourself. All you need to do then is provide the images as the background in css.