指向选项卡的Javascript链接

指向选项卡的Javascript链接,javascript,html,css,tabs,hashtag,Javascript,Html,Css,Tabs,Hashtag,我有一个完整的标签系统,使用以下代码。单击LI链接时,它会隐藏其他div并显示选定的div <script type="text/javascript"> //<![CDATA[ var tabLinks = new Array(); var contentDivs = new Array(); function init() { // Grab the tab links and content divs from the p

我有一个完整的标签系统,使用以下代码。单击LI链接时,它会隐藏其他div并显示选定的div

<script type="text/javascript">
    //<![CDATA[

    var tabLinks = new Array();
    var contentDivs = new Array();

    function init() {

      // Grab the tab links and content divs from the page
      var tabListItems = document.getElementById('tabs').childNodes;
      for ( var i = 0; i < tabListItems.length; i++ ) {
        if ( tabListItems[i].nodeName == "LI" ) {
          var tabLink = getFirstChildWithTagName( tabListItems[i], 'A' );
          var id = getHash( tabLink.getAttribute('href') );
          tabLinks[id] = tabLink;
          contentDivs[id] = document.getElementById( id );
        }
      }

      // Assign onclick events to the tab links, and
      // highlight the first tab
      var i = 0;

      for ( var id in tabLinks ) {
        tabLinks[id].onclick = showTab;
        tabLinks[id].onfocus = function() { this.blur() };
        if ( i == 0 ) tabLinks[id].className = 'selected';
        i++;
      }

      // Hide all content divs except the first
      var i = 0;

      for ( var id in contentDivs ) {
        if ( i != 0 ) contentDivs[id].className = 'tabContent hide';
        i++;
      }
    }

    function showTab() {
      var selectedId = getHash( this.getAttribute('href') );

      // Highlight the selected tab, and dim all others.
      // Also show the selected content div, and hide all others.
      for ( var id in contentDivs ) {
        if ( id == selectedId ) {
          tabLinks[id].className = 'selected';
          contentDivs[id].className = 'tabContent';
        } else {
          tabLinks[id].className = '';
          contentDivs[id].className = 'tabContent hide';
        }
      }

      // Stop the browser following the link
      return false;
    }

    function getFirstChildWithTagName( element, tagName ) {
      for ( var i = 0; i < element.childNodes.length; i++ ) {
        if ( element.childNodes[i].nodeName == tagName ) return element.childNodes[i];
      }
    }

    function getHash( url ) {
      var hashPos = url.lastIndexOf ( '#' );
      return url.substring( hashPos + 1 );
    }

    //]]>
    </script>

//

我希望能够通过此链接打开选项卡。因此,当我访问
index.php#hello
时,它将链接到id为
hello
的div。我试图简单地访问链接,但这不起作用。。。感谢高级版。

假设在页面加载时运行
init()
,只需在该函数中添加以下内容:

if( window.location.hash )
    showTab();

当您单击链接以设置适当的选项卡打开时,会执行函数
showTab()
,但在页面加载时不会执行,因此它不知道如何执行代码。如果存在哈希位置,让它运行一次将有助于获得所需的内容。

为什么不使用
window.location.hash
函数而不是
getHash()
函数呢?另外,您应该在页面加载时调用
showTab()
。页面加载后,您似乎没有执行它,只有在您单击某个选项卡时,才会执行它。我有一个超负荷的身体让我兴奋。没关系,它只需要跑。