Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当用户单击 jQuery 工具选项卡实现中的一个选项卡时,我想运行一些代码。这可能吗?基于对源的初步了解,我持怀疑态度,但欢迎提出想法。我正在考虑做一个稍微不同版本的幻灯片效果,除了基本的幻灯片内容之外,它还可以让我打电话。想法?
当然可以,
$(function() { // setup ul.tabs to work as tabs for each div directly under div.panes $(".tabs li a").click(function() { alert($(this).html() + " clicked"); return false; }); $("ul.tabs").tabs("div.panes > div"); });
演示