2015-12-20 80 views
-3

如何在頁面加載時使用自定義URL更改所有hrefs?用javascript更改所有hrefs?

對不起,我只是不知道我該怎麼做。不要真的知道任何js。

感謝任何能幫助我的人。真的很感激它。

+2

如果你什麼都不知道,你顯然沒有讀過[問],請不要閱讀。另外,刪除這個問題。 – Amit

回答

2

您可以使用此:

// Execute this when the document is ready. 
window.onload = function() { 
    // Get all the `<a>` tags. 
    var all_a = document.querySelectorAll("a"); 
    // Loop through all the `<a>` tags. 
    for (i = 0; i < all_a.length; i++) 
    // Change the `href`: 
    all_a[i].setAttribute("href", "whatever_you_want"); 
} 
相關問題