javascript:获取网址路径 [英] javascript: get url path

查看:94
本文介绍了javascript:获取网址路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

var url = 'http://domain.com/file.php?id=1';

var url = 'https://domain.us/file.php?id=1'

var url = 'domain.de/file.php?id=1';

var url = 'subdomain.domain.com/file.php?id=1'

从上述任意一个网址中我想获得仅路径,在上面的情况中:

from either one of these urls I want to get only the path, in the case above:

var path = '/file.php?id=1';


推荐答案

可以做到这一点使用正则表达式,但使用这些原生属性可以说是最好的方法。

You could do it with regex, but using these native properties are arguably the best way to do it.

var url = 'subdomain.domain.com/file.php?id=1',
    a = document.createElement('a');

a.href = 'http://' + url;
var path = a.pathname + a.search; // /file.php?id=1

在jsFiddle.net上查看

这篇关于javascript:获取网址路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆