如何添加“选定的”使用 jQuery UI 选项卡将类设置为选定的选项卡锚点?
我正在使用 jQuery UI tabs()。它将“ui-tabs-selected”添加到选定的 LI,但每个 LI 都有一个 ID,因为它是不同的。由于 IE6 中的多 ID/类错误,我需要将“选定”类应用于“ui-tabs-selected”LI 内的锚点。
有人可以告诉我该怎么做吗?
I'm using jQuery UI tabs(). It adds "ui-tabs-selected" to the selected LI, but each LI has an ID because it's different. Due to the multi ID/class bug in IE6, I need to apply a "selected" class to the anchor that is inside the "ui-tabs-selected" LI.
Can someone tell me how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以执行
要手动将类添加到任何选项卡,假设您的
ul
具有 id#tabs
更新的答案
使用 select 事件触发
addClass()
检查工作示例 http://jsfiddle.net/ 6JryL/
you can do
To manually add a class to any of the tabs you can do assuming your
ul
has the id#tabs
Updated Answer
Use the select event to trigger
addClass()
Check working example at http://jsfiddle.net/6JryL/