Jquery text() 与 IE7 中的标题进行比较
回答我的最后一个问题:
我已经成功地在除 IE 7 之外的所有浏览器中工作。IE 8,9 FF 5,6 Safari 和 Chrome 都可以正确实现我的代码,除了 ie7。
有人建议吗?
In response to my last question here:
Jquery to detect identical class and text for tab navi
I have a got it succesfully working in all browsers except IE 7. IE 8,9 FF 5,6 Safari and Chrome all can implement my code correctly except ie7.
Anyone suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DEMO
我认为您正在使原本非常简单的事情复杂化。
例如,如果您有三个导航:
li
李
li
和三个选项卡:
tab
选项卡
tab
最简单的方法是获取“操作按钮 li”的
index
编号,该编号将使用相同的 index 触发“tab” jQuery 的:eq()
选择器。jQuery API Docs:
:eq()
.index()
DEMO
I think you are complicating something that can be very simple.
If you have (for example) three navigations:
li
li
li
and the three tabs:
tab
tab
tab
The easiest way is to grab the
index
number of the 'action button li' that will trigger the 'tab' with SAME index using the jQuery's:eq()
selector.jQuery API Docs:
:eq()
.index()