标签: javascript jquery
我有这段代码
var pathname = window.location.pathname;
采用当前的浏览器网址
如何将路径名粘贴到像p标签这样的html元素中?
答案 0 :(得分:7)
使用此:
$('p.class').html(location.pathname);
如果您想获得完整的网址:
$('p.class').html(location.href);