我有這樣的代碼獲取瀏覽器的URL與jQuery
var pathname = window.location.pathname;
即取當前瀏覽器的URL
我如何可以粘貼到路徑就像一個p標記的HTML元素?
我有這樣的代碼獲取瀏覽器的URL與jQuery
var pathname = window.location.pathname;
即取當前瀏覽器的URL
我如何可以粘貼到路徑就像一個p標記的HTML元素?
使用此:
$('p.class').html(location.pathname);
如果你想獲得完整的URL:
$('p.class').html(location.href);
酷。你嘗試了什麼,會發生什麼? – 2012-03-30 18:06:39