0
我使用下面的腳本將點擊鏈接的href添加到網址中。所以mysite.com成爲,mysite.com#a1,我仍然需要實現的是,如果我再次單擊該鏈接,它將刪除#a1,因此mysite.com#a1會返回到mysite.com或mysite .com#a1#a2變成mysite.com#a2。根據點擊鏈接從網址中刪除哈希標記值
//creates href for each of my links
$('.contentTrigger a').attr('href', function(i, value) {
return "#a" + (i+1);
});
//adds href value to url
$('.contentTrigger a').click(function(event) {
var currentHash = window.location.hash;
window.location.hash = currentHash + this.hash;
});
感謝