jQuery 是一款著名的 JavaScript 庫,它被廣泛用于開發現代化的網絡應用程序。其中一個重要的組件是 $(location),它提供了許多有用的方法來操作瀏覽器的 URL。
首先,可以使用 $(location).attr('href') 獲取當前頁面的完整 URL。例如:
var currentUrl = $(location).attr('href'); console.log(currentUrl); // https://www.example.com/page.html
除了 href 屬性,還可以使用 $(location).prop('xxx') 獲取 other attributes,例如 pathname、hostname 和 protocol。例如:
var pathName = $(location).prop('pathname'); console.log(pathName); // /page.html
如果你想在當前頁面上設置一個新的 URL,可以使用 $(location).attr('href', newUrl)。例如:
$(location).attr('href', 'https://www.example.com/new-page.html');
最后,還可以使用 $(location).reload() 方法重新加載當前頁面。例如:
$(location).reload();
在實踐中,$(location) 經常與其他 jQuery 方法一起使用,例如 $(document).ready() 和 $(window).on('load', function() {})。這些方法有助于確保頁面在加載完成后正確地初始化。
上一篇整個網頁居中 css
下一篇$==jquery么