如何在jquery中通过选项卡名称获取选项卡索引?
如何在jquery中通过选项卡名称获取选项卡索引?
我需要通过此命令删除某个选项卡:
$(tabContainer).tabs('remove', index);
索引必须包含要关闭的选项卡的正确顺序。问题是,我正在以编程方式生成选项卡,因此很可能有错误的索引。
how to get tab index by tab name in jquery?
i need to remove a certain tab by this command:
$(tabContainer).tabs('remove', index);
the index must contain the correct order of the tab to be closed. the problem is, i'm generating the tabs programmatically so chances of having the wrong index is likely.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为这就是您想要的(“名称”是您的选项卡的名称):
I think this is what you want ("name" is the name of your tab) :
您可能需要提供 HTML 和 HTML 的示例。 JS/jQuery 但这是我认为你需要的。
You may need to give an example of your HTML & JS/jQuery but here is what I think you need.
我最终所做的只是循环遍历列表元素并查找文本。可能不是最有效的方法,但它有效:
What I ended up doing is just looping through the list elements and looking for the text. May not be the most efficient way but it works: