いくつかの単純なタブに次のコードを使用していますが、このコードを編集してディープ リンクを有効にできるかどうか疑問に思っています。私は jQuery UI を使用しておらず、プラグインも使用したくないと考えています。事前に乾杯してください。
$('#tabber > div').hide(); // Hide all divs
$('#tabber ul li a').click(function () { // When link is clicked
$('#tabber ul li').removeClass('active'); // Remove active class from links
$(this).parent().addClass('active'); //Set parent of clicked link class to active
var currentTab = $(this).attr('href'); // Set currentTab to value of href attribute
$('#tabber > div').fadeOut(200); // Hide all divs
$(currentTab).fadeIn(200); // Show div with id equal to variable currentTab
return false;
});