使用jQuery获取当前URL?


1828

我正在使用jQuery。如何获取当前URL的路径并将其分配给变量?

范例网址:

http://localhost/menuname.de?foo=bar&number=0


4
我认为应该将问题恢复为要求jQuery,因为有答案,无论是否需要jQuery来完成任务。
眼神


3
@goodeye不,没有jQuery方式获取位置;自jQuery Bug跟踪器起:»可能有效,但从未得到支持或记录。只需使用document.location.href即可,它更快,更简单,更易于理解。«换句话说,有些人使用jQuery来获取位置,但他们依赖的是错误而不是功能。请参阅:bugs.jquery.com/ticket/7858
Feeela

Answers:


2518

要获取路径,可以使用:

var pathname = window.location.pathname; // Returns path only (/path/example.html)
var url      = window.location.href;     // Returns full URL (https://example.com/path/example.html)
var origin   = window.location.origin;   // Returns base URL (https://example.com)


100
jQuery并没有杀死它,它给Javascript赋予了新的活力。新的C#/ Java程序员会理解指针吗?不,他们需要吗?并非如此,较新的抽象足够强大,无所谓。.–
flesh

199
“我如何在jQuery中XYZ”和答案很简单的javascript很常见。您可能知道如何使用普通javascript做某事;但是,由于浏览器不一致,您可能更喜欢采用“ jQuery”方式。我记得在jQuery或框架之前,我会先检查浏览器,然后执行我想做的几种方法。jQuery也可以杀死普通的js ...是的,感谢上帝,但是它也使它可用。
帕里斯

9
这不适用于完整的网址。例如。对于“ mail.google.com/mail/u/0/#mbox/13005b79fe72f448 ”,这只会返回/ mail / u / 0
dwaynemac 2011年

12
嗯,... window.location.pathname仅使URL进入“?” 并且没有得到问题中询问的查询参数。
johntrepreneur

816

在纯jQuery样式中:

$(location).attr('href');

位置对象还具有其他属性,例如主机,哈希,协议和路径名。


52
显然,不建议在jQuery中使用$(location),并且建议不要使用它们:bugs.jquery.com/ticket/7858
Peter

10
@Peter Bug关闭为无效。
kevinji 2011年

21
@ mc10:“无效”部分适用于支持$(location)的请求;这不应该被使用。
彼得

6
不需要此答案,可以将问题和答案更新为不使用jquery。可以在这里找到原因bugs.jquery.com/ticket/7858#comment:4
Vishwanath

8
@HaralanDobrev:您不应该.attr()在位置上做。(1)它不是元素,所以$(location)最好不要使用阴影;(2)即使它起作用了,您也应该使用它.prop()来获取属性。 .attr()用于HTML属性。
cHao

471
http://www.refulz.com:8082/index.php#tab2?foo=789

Property    Result
------------------------------------------
host        www.refulz.com:8082
hostname    www.refulz.com
port        8082
protocol    http:
pathname    index.php
href        http://www.refulz.com:8082/index.php#tab2
hash        #tab2
search      ?foo=789

var x = $(location).attr('<property>');

仅当您使用jQuery时,此方法才有效。例如:

<html>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script>
  $(location).attr('href');      // http://www.refulz.com:8082/index.php#tab2
  $(location).attr('pathname');  // index.php
</script>
</html>

13
与之前的解释相同,但包含对象的所有元素。好答案。
奥斯卡·卡尔沃

4
/index.php代替index.php路径名。
安德里亚


2
根据bugs.jquery.com/ticket/7858的说法,这只是偶然而已。同样,attr应该只在DOM对象上使用,因为可以通过使用HTML属性来设置。
MauganRa

69

如果您需要URL中存在的哈希参数,则window.location.href可能是一个更好的选择。

window.location.pathname
=> /search

window.location.href 
 => www.website.com/search#race_type=1

3
如果某人只需要哈希标签,就可以调用window.location.href
Amit Patel

15
我认为@AmitPatel的意思是window.location.hash
ptim


45

只需在JavaScript中添加此函数,它将返回当前路径的绝对路径。

function getAbsolutePath() {
    var loc = window.location;
    var pathName = loc.pathname.substring(0, loc.pathname.lastIndexOf('/') + 1);
    return loc.href.substring(0, loc.href.length - ((loc.pathname + loc.search + loc.hash).length - pathName.length));
}

我希望这个对你有用。


1
这对于我懒惰地拥有一些硬编码基本URL的脚本很有帮助。我更喜欢在根目录上没有结尾的'/'并将其插入路径中,所以我只做了第二行var pathName = loc.pathname.substring(0, loc.pathname.lastIndexOf('/'));
cogdog

40

window.location是javascript中的对象。它返回以下数据

window.location.host          #returns host
window.location.hostname      #returns hostname
window.location.path          #return path
window.location.href          #returns full current url
window.location.port          #returns the port
window.location.protocol      #returns the protocol

在jQuery中,您可以使用

$(location).attr('host');        #returns host
$(location).attr('hostname');    #returns hostname
$(location).attr('path');        #returns path
$(location).attr('href');        #returns href
$(location).attr('port');        #returns port
$(location).attr('protocol');    #returns protocol

1
windo.location.origin呢?
Ali Sheikhpour

30

这是比许多人想象的更为复杂的问题。若干浏览器支持内置的JavaScript位置对象以及可通过window.location或访问的关联参数/方法document.location。但是,不同版本的Internet Explorer(6,7)不以相同的方式支持这些方法(不支持window.location.hrefwindow.location.replace()),因此您必须通过始终编写条件代码来手持Internet Explorer,以不同的方式访问它们。

因此,如果您有可用的jQuery并已加载,则最好使用jQuery(位置),就像其他人提到的那样,因为它可以解决这些问题。但是,如果您正在做一个示例-通过JavaScript进行客户端地理定位重定向(即使用Google Maps API和location对象方法),那么您可能不想加载整个jQuery库并编写条件代码,检查Internet Explorer / Firefox / etc等的每个版本。

Internet Explorer使前端编码的猫感到不高兴,但是jQuery却是一堆牛奶。


另外:bugs.jquery.com/ticket/8138。在jQuery 1.8.0源代码中有注释://#8138,如果已设置document.domain,则从window.location访问//字段时,IE可能会引发异常。
2012年


24

Java脚本提供了许多方法来检索显示在浏览器地址栏中的当前URL。

测试网址:

http://
stackoverflow.com/questions/5515310/get-current-url-with-jquery/32942762
?
rq=1&page=2&tab=active&answertab=votes
#
32942762
resourceAddress.hash();
console.log('URL Object ', webAddress);
console.log('Parameters ', param_values);

功能:

var webAddress = {};
var param_values = {};
var protocol = '';
var resourceAddress = {

    fullAddress : function () {
        var addressBar = window.location.href;
        if ( addressBar != '' && addressBar != 'undefined') {
            webAddress[ 'href' ] = addressBar;
        }
    },
    protocol_identifier : function () { resourceAddress.fullAddress();

        protocol = window.location.protocol.replace(':', '');
        if ( protocol != '' && protocol != 'undefined') {
            webAddress[ 'protocol' ] = protocol;
        }
    },
    domain : function () {      resourceAddress.protocol_identifier();

        var domain = window.location.hostname;
        if ( domain != '' && domain != 'undefined' && typeOfVar(domain) === 'string') {
            webAddress[ 'domain' ] = domain;
            var port = window.location.port;
            if ( (port == '' || port == 'undefined') && typeOfVar(port) === 'string') {
                if(protocol == 'http') port = '80';
                if(protocol == 'https') port = '443';           
            }
            webAddress[ 'port' ] = port;
        }
    },
    pathname : function () {        resourceAddress.domain();

        var resourcePath = window.location.pathname;
        if ( resourcePath != '' && resourcePath != 'undefined') {
            webAddress[ 'resourcePath' ] = resourcePath;
        }
    },
    params : function () {      resourceAddress.pathname();

        var v_args = location.search.substring(1).split("&");

        if ( v_args != '' && v_args != 'undefined')
        for (var i = 0; i < v_args.length; i++) {
            var pair = v_args[i].split("=");

            if ( typeOfVar( pair ) === 'array' ) {
                param_values[ decodeURIComponent( pair[0] ) ] = decodeURIComponent( pair[1] );
            }
        }
        webAddress[ 'params' ] = param_values;
    },
    hash : function () {        resourceAddress.params();

        var fragment = window.location.hash.substring(1);
        if ( fragment != '' && fragment != 'undefined')
            webAddress[ 'hash' ] = fragment;        
    }
};
function typeOfVar (obj) {
      return {}.toString.call(obj).split(' ')[1].slice(0, -1).toLowerCase();
}
  • 协议« 网页浏览器使用Internet协议由以下为WebHosted应用程序和Web客户端(浏览器)之间的通信的一些规则。(http = 80,https(SSL)= 443,ftp = 21,依此类推)

EX:默认端口号

<protocol>//<hostname>:<port>/<pathname><search><hash>
https://en.wikipedia.org:443/wiki/Pretty_Good_Privacy
http://stackoverflow.com:80/
  • (//)«主机是Internet上一个端点(资源所在的计算机)的名称。www.stackoverflow.com- 应用程序(OR)的DNS IP地址localhost:8080-localhost

域名是根据域名系统(DNS)树的规则和过程进行注册的。使用IP地址管理您的域以进行寻址的人的DNS服务器。在DNS服务器层次结构中,stackoverlfow.com的根名称为com。

gTLDs      - com « stackoverflow (OR) in « co « google

您必须维护在主机文件中不是PUBLIC的域的本地系统。 localhost.yash.com « localhsot - subdomain(web-server), yash.com - maindomain(Proxy-Server). myLocalApplication.com 172.89.23.777

  • (/)«路径提供有关Web客户端要访问的主机内特定资源的信息
  • (?)«可选查询是传递由定界符(&)分隔的一系列属性-值对。
  • (#)«可选片段通常是特定元素的id属性,Web浏览器会将其滚动到视图中。

如果参数具有纪元, ?date=1467708674则使用。

var epochDate = 1467708674; var date = new Date( epochDate );

网址 在此处输入图片说明


使用username:password的身份验证URL,如果usernaem / password包含@符号,
例如:

Username = `my_email@gmail`
Password = `Yash@777`

那么您需要对@as 进行URL编码%40参考...

http://my_email%40gmail.com:Yash%40777@www.my_site.com

encodeURI()(vs)encodeURIComponent()例子

var testURL = "http:my_email@gmail:Yash777@//stackoverflow.com?tab=active&page=1#32942762";

var Uri = "/:@?&=,#", UriComponent = "$;+", Unescaped = "(-_.!~*')"; // Fixed
var encodeURI_Str = encodeURI(Uri) +' '+ encodeURI( UriComponent ) +' '+ encodeURI(Unescaped);
var encodeURIComponent_Str =  encodeURIComponent( Uri ) +' '+ encodeURIComponent( UriComponent ) +' '+ encodeURIComponent( Unescaped );
console.log(encodeURI_Str, '\n', encodeURIComponent_Str);
/*
 /:@?&=,# +$; (-_.!~*') 
 %2F%3A%40%3F%26%3D%2C%23 %2B%24%3B (-_.!~*')
*/


19

您可以登录window.location并查看所有选项,仅使用URL:

window.location.origin

用于整个路径:

window.location.href

还有位置。_ _

.host
.hostname
.protocol
.pathname

不应该使用它,因为location.origin在Internet Explorer中不起作用
Jacek Kolasa 2015年


13

如果有人要连接URL和哈希标记,请结合使用以下两个功能:

var pathname = window.location.pathname + document.location.hash;

需要说明的是:您根本不需要使用jQuery,上面的javascript函数将返回OP的要求?
GHC




11

要从iframe中获取父窗口的网址,请执行以下操作:

$(window.parent.location).attr('href');

注意:仅适用于同一域


11

这是一个使用jQuery和JavaScript获取当前URL的示例:

$(document).ready(function() {

    //jQuery
    $(location).attr('href');

    //Pure JavaScript
    var pathname = window.location.pathname;

    // To show it in an alert window
    alert(window.location);
});


$.getJSON("idcheck.php?callback=?", { url:$(location).attr('href')}, function(json){
    //alert(json.message);
});



9

window.location将为您提供当前 URL,您可以从中提取任何内容...


9

purl.js。这确实会有所帮助,也可以使用,具体取决于jQuery。像这样使用它:

$.url().param("yourparam");

8

如果要获取根站点的路径,请使用以下命令:

$(location).attr('href').replace($(location).attr('pathname'),'');

1
那不是.replace('#.*', '')吗?不仅删除井号,还删除其后的所有内容?
JonasKölker'12

8

非常常用的前3个是

1. window.location.hostname 
2. window.location.href
3. window.location.pathname

8

var path = location.pathname返回当前URL的路径(不需要jQuery)。的使用window.location是可选的。


8

所有浏览器都支持Javascript窗口对象。它定义了浏览器的窗口。

全局对象和函数自动成为窗口对象的一部分。

所有全局变量都是窗口对象属性,所有全局函数都是其方法。

整个HTML文档也是window属性。

因此,您可以使用window.location对象获取所有与url相关的属性。

Java脚本

console.log(window.location.host);     //returns host
console.log(window.location.hostname);    //returns hostname
console.log(window.location.pathname);         //return path
console.log(window.location.href);       //returns full current url
console.log(window.location.port);         //returns the port
console.log(window.location.protocol)     //returns the protocol

jQuery查询

console.log("host = "+$(location).attr('host'));
console.log("hostname = "+$(location).attr('hostname'));
console.log("pathname = "+$(location).attr('pathname')); 
console.log("href = "+$(location).attr('href'));   
console.log("port = "+$(location).attr('port'));   
console.log("protocol = "+$(location).attr('protocol'));
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>


1
我正在查看location.pathname您使用的位置location.path-是否需要更新此答案?
爱德华

@Edward更新
Sumesh TG

7
var newURL = window.location.protocol + "//" + window.location.host + "/" + window.location.pathname;

2
您应该在答案上添加一些解释。
猛禽


4

在jstl中,我们可以使用来访问当前的URL路径pageContext.request.contextPath,如果您想进行ajax调用,

  url = "${pageContext.request.contextPath}" + "/controller/path"

例如:在页面http://stackoverflow.com/questions/406192这会给http://stackoverflow.com/controller/path

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.