我的jquery标签有问题。如果我绑定到tabsselect或tabsshow标签的事件,它们不会被触发。
我正在使用最新的jquery-ui 1.10.3并且我的webapp控制台中没有js错误。
代码:
$("#tabs").tabs();
$("#tabs").bind('tabsselect', function(event, ui) {
alert(ui.index); // This is never displayed
if (ui.index === 1 && plot1._drawCount === 0) {
plot1.replot();
}
else if (ui.index === 2 && plot2._drawCount === 0) {
plot2.replot();
}
});
答案 0 :(得分:10)