当我单击 jQuery 中的单个选项卡时会运行什么代码?
当我单击使用 jQuery-UI-tabs 的网页中的选项卡时,会运行什么代码来实际从一个选项卡切换到另一个选项卡?
When I click on a tab in a web page that uses jQuery-UI-tabs, what code is run to actually switch from one tab to another?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
单击任何 jQuery UI 选项卡时,都会触发
select
事件。如果您愿意,您可以使用此事件并在其中写入您的逻辑。On click on any jQuery UI tabs,
select
event is triggered. If you want you can use this event and write your logic in it.您可以使用 Chrome 开发工具或 Firebug 来逐步执行每个已执行的函数。这可能不是必需的,因为它只是一段切换列表中元素的一些
display
属性的代码。您应该下载 jQuery UI 的未压缩版本并自行分析选项卡部分。
You can use Chrome Dev Tools or Firebug to step through each executed function. That may not be necessary as it's just a piece of code that toggles some
display
attributes of elements in a list.You should download the uncompressed version of jQuery UI and analyse the Tabs part yourself.