根据哈希位置,在页面加载时自动单击href链接

时间:2015-03-04 16:36:08

标签: javascript jquery

我在HTML / JS中有这个代码:

<a href="#customer_tickets" class="tabLink" onclick="LoadPage('/customer/editcustomer_tickets.php?customer=<?php echo $customer["sequence"]; ?>', '.EditCustomer');">Tickets</a>

if(location.hash) {
        //load the set hash here
}

单击a href时,它在JS中运行LoadPage函数以将页面加载到div中

单击它们时,它会在浏览器的URL中设置哈希位置

我希望能够检查页面加载时是否设置了哈希位置,如果是,则自动点击正确的href

我该怎么做?

1 个答案:

答案 0 :(得分:1)

使用location.hash的值来标识正确的a元素,然后点击它:

//Wait for the document to be ready
$(function() {
    //Check if we have a hash, if so try to click an element that links to it
    if (location.hash.length > 0) {
        $('a[href="' + location.hash + '"]').click();
    }
});