Я использую jquery и вкладки на основе http://www.sohtanaka.com/web-design/simple-tabs-w-css-jquery/
<script type="text/javascript">
$(function() {
$(".tab_content").hide(); //Hide all content
$("ul.tabs li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content
//On Click Event
$("ul#menu li").click(function() {
$("ul#menu li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".tab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active content
return false;
});
});
</script>
Можно ли настроить это так, чтобы в зависимости от значения в URL (page.html # tab4 и т. Д.) Вкладка-ответчикshow?
Я верю, что в его текущем состоянии он не работает, потому что возвращает false, и что
var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
ищет значение привязки, а не URL.
Надеюсь, что это имеет смысл.
Я (думаю), если исправление возможно, мне нужен способ получить #tab из URL-адреса, а также на основе нажатой привязки.
Спасибо