我在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
我该怎么做?
答案 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();
}
});