当我单击 jQuery 中的单个选项卡时会运行什么代码?

发布于 2024-11-30 15:07:44 字数 65 浏览 0 评论 0原文

当我单击使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

遥远的绿洲 2024-12-07 15:07:44

单击任何 jQuery UI 选项卡时,都会触发 select 事件。如果您愿意,您可以使用此事件并在其中写入您的逻辑。

$(".selector").tabs({
   select: function(event, ui) { 
       //Write your code here
   }
});

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.

$(".selector").tabs({
   select: function(event, ui) { 
       //Write your code here
   }
});
蘑菇王子 2024-12-07 15:07:44

您可以使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文