色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

jquery獲得當(dāng)前url

魏麗春1年前7瀏覽0評論

在開發(fā)Web應(yīng)用時,有時需要獲取當(dāng)前頁面的URL地址,這時可以使用jQuery來獲取。

$(function() {
var currentUrl = window.location.href;
console.log(currentUrl);
});

在上面的代碼中,使用了jQuery的$()方法來獲取頁面的URL地址,然后將其保存在currentUrl變量中,最后通過console.log()方法將其打印出來。

需要注意的是,window.location.href獲取的是完整的URL地址,包括協(xié)議、主機名、端口、路徑和查詢參數(shù)。如果只需要獲取當(dāng)前頁面的路徑和查詢參數(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)前頁面的路徑和查詢參數(shù),并通過console.log()方法將它們拼接起來打印出來。

上一篇div x滾動
下一篇div ul 換行