本文介绍了请求JavaScript地址的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在JavaScript中获取您所在页面的地址? ?

How do you get the address of the page you are on in JavaScript?

例如,如果我在 somesite.com/javascript/home.html 上有一个脚本,我想要找出请求地址( somesite.com/javascript/home.html ),如何在JavaScript中获取此信息?

For example, if I had a script at somesite.com/javascript/home.html and I want to find out the request address (somesite.com/javascript/home.html), how do I get this information in JavaScript?

推荐答案

您需要使用:
document.location window.location

您可以阅读更多。或者对有更多解释。

You can read more here. Or there is a little more explanation over there.

澄清事项:

最初由Mozilla开发者中心发布

这篇关于请求JavaScript地址的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 13:29