您好我在另一页上链接到ajaxtabs时遇到了问题。
我已经看过这个Link directly to a jQuery tab from another page?,这正是我想要做的。但是我的内容是通过Ajax加载的,它也有“粘性标签”。饼干也是如此。
我使用的是jQuery UI标签1.8.22,有人可以帮助我吗?
答案 0 :(得分:0)
<script>
$(function() {
$( "#tabs" ).tabs({
ajaxOptions: {
error: function( xhr, status, index, anchor ) {
$( anchor.hash ).html(
"Couldn't load this tab. We'll try to fix this as soon as possible. " +
"Please contact webmaster@tch.anu.edu.au" );
}
}
});
});
</script>
<script type="text/javascript">
$(function(){
$(".tabs").tabs();
if($(".tabs") && document.location.hash){
$.scrollTo(".tabs");
}
$(".tabs ul").localScroll({
target:".tabs",
duration:0,
hash:true
});
});
</script>
<script type="text/javascript">
$( function()
{
var cookieName = 'stickyTab';
$( '#tabs' ).tabs( {
selected: ( $.cookies.get( cookieName ) || 0 ),
select: function( e, ui )
{
$.cookies.set( cookieName, ui.index );
}
} );
} );
</script>