我发现有人写了如下的jquery代码:
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
<script type="text/javascript">
$(function () {
$("#tabs").tabs();
$("#tabs").bind("tabsselect", function (e, tab) {
alert("The tab at index " + tab.index + " was selected");
});
});
</script>
他绑定了“tabsselect”事件。我尝试查找有关 tabselect 事件的更多详细信息。所以我访问了 URL:http://api.jqueryui.com/tabs/
但我没有找到 tabselect 事件。我访问了错误的网址吗?还是我被误导了?