如何在Javascript中运行时确定页面URL?

时间:2012-07-18 08:58:18

标签: c# javascript url web

我想确定Javascript中网页的网址。这可能吗? 我怎样才能做到这一点? 非常感谢你

3 个答案:

答案 0 :(得分:4)

请参阅window.location object

根据您是否需要哈希,查询字符串等,可以使用许多不同的属性。

例如,在此页面上;

window.location.hash: "#11537761";
window.location.host: "stackoverflow.com";
window.location.hostname: "stackoverflow.com";
window.location.href: "http://stackoverflow.com/questions/11537718/how-to-determine-the-page-url-at-run-time-in-javascript/11537761#11537761";
window.location.origin: "http://stackoverflow.com";
window.location.pathname: "/questions/11537718/how-to-determine-the-page-url-at-run-time-in-javascript/11537761";

答案 1 :(得分:1)

快速谷歌:

<SCRIPT LANGUAGE="JavaScript">
  alert(location.href);
</SCRIPT>

答案 2 :(得分:1)

在JavaScript中,您有document.URL

alert(document.URL);