jQuery中的document.url是一個非常有用的方法,它可以讓我們獲取當前頁面的URL地址,并且對URL進行一系列操作。
// 獲取當前URL var url = $(document).url(); // 獲取URL中的參數(shù) var params = $(document).url().param(); // 獲取URL中特定參數(shù)的值 var paramValue = $(document).url().param('paramName'); // 替換URL中的參數(shù)值 var newUrl = $(document).url().param('paramName', 'newValue'); // 移除URL中的參數(shù) var newUrl = $(document).url().removeParam('paramName');
以上代碼演示了document.url幾個常用的操作,在實際開發(fā)中可以結合業(yè)務需求使用。
需要注意的是,document.url方法需要使用jquery-url庫,如果你還沒有安裝該庫,需要先通過npm安裝。
npm install jquery-url
除此之外,如果你需要獲取URL中的哈希值,可以使用document.location.hash方法。
// 獲取URL中的哈希值 var hash = document.location.hash;
總的來說,document.url和document.location.hash等方法,可以讓我們對URL進行靈活的控制,在網(wǎng)頁開發(fā)中非常實用。希望這篇文章對你有所幫助。