在開(kāi)發(fā)Web應(yīng)用時(shí),有時(shí)需要獲取當(dāng)前頁(yè)面的URL地址,這時(shí)可以使用jQuery來(lái)獲取。
$(function() { var currentUrl = window.location.href; console.log(currentUrl); });
在上面的代碼中,使用了jQuery的$()方法來(lái)獲取頁(yè)面的URL地址,然后將其保存在currentUrl變量中,最后通過(guò)console.log()方法將其打印出來(lái)。
需要注意的是,window.location.href獲取的是完整的URL地址,包括協(xié)議、主機(jī)名、端口、路徑和查詢參數(shù)。如果只需要獲取當(dāng)前頁(yè)面的路徑和查詢參數(shù),可以使用window.location.pathname和window.location.search屬性分別獲取。
$(function() { var currentPath = window.location.pathname; var currentQuery = window.location.search; console.log(currentPath + currentQuery); });
上面的代碼將currentPath和currentQuery分別保存為當(dāng)前頁(yè)面的路徑和查詢參數(shù),并通過(guò)console.log()方法將它們拼接起來(lái)打印出來(lái)。
下一篇div ul 換行