0
嗨我有問題鏈接到另一頁上的ajaxtabs。從另一個頁面直接鏈接到jQuery ajaxtab?
我看過這個Link directly to a jQuery tab from another page?,這正是我想要做的。不過,我的內容是通過Ajax加載的,它也有'stickytab'餅乾。
我使用jQuery UI Tabs 1.8.22,可以幫助我嗎?
嗨我有問題鏈接到另一頁上的ajaxtabs。從另一個頁面直接鏈接到jQuery ajaxtab?
我看過這個Link directly to a jQuery tab from another page?,這正是我想要做的。不過,我的內容是通過Ajax加載的,它也有'stickytab'餅乾。
我使用jQuery UI Tabs 1.8.22,可以幫助我嗎?
<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 [email protected]");
}
}
});
});
</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>
此jquery使用AJAX選項卡將外部內容加載到使用cookie會話分配的空間中。 它還使標籤1/2/3可鏈接給它自己的URL,所以你可以給某人你的網站,所以它會打開正確的標籤。這將允許您在您的網站上鍊接到這些參考選項卡。 – user1642973