<ul>
<li><a href="#tabs-1">Tab1</a></li>
<li>@Html.ActionLink("Test", "Test")</li>
</ul>
答案 0 :(得分:1)
从docs,您可以了解如何使用select
回调。
$('#example').tabs({
select: function(event, ui) {
var url = $.data(ui.tab, 'load.tabs');
if( url ) {
location.href = url;
return false;
}
return true;
}
});