admin管理员组文章数量:1344593
When I visit my url, my script will get the current URL and store it in a variable with
var currentURL = (document.URL);
I'd like to get everything after the forward slash in my url because there will be a hash ID after the forward slash like this:
www.mysite/XdAs2
so this is what would be stored in my variable currentURL and I'd like to take only the XdAs2
from it and store that into another variable. In addition, I'd like to know two other things.
Is document.URL the best way to get the current URL or will I have issues with some browsers?
If I were to try to open that URL using an iframe, will document.URL still work? or must there be an address bar present containing the url? I would really appreciate answers for those questions three questions. Thank you
When I visit my url, my script will get the current URL and store it in a variable with
var currentURL = (document.URL);
I'd like to get everything after the forward slash in my url because there will be a hash ID after the forward slash like this:
www.mysite./XdAs2
so this is what would be stored in my variable currentURL and I'd like to take only the XdAs2
from it and store that into another variable. In addition, I'd like to know two other things.
Is document.URL the best way to get the current URL or will I have issues with some browsers?
If I were to try to open that URL using an iframe, will document.URL still work? or must there be an address bar present containing the url? I would really appreciate answers for those questions three questions. Thank you
- Are you looking for this Regex:- /(\/\/[^\/]+)?\/.*/ – Rahul Tripathi Commented Oct 5, 2013 at 10:53
4 Answers
Reset to default 6Here's some pseudo code:
var currentURL = (document.URL); // returns http://myplace./abcd
var part = currentURL.split("/")[1];
alert(part); // alerts abcd
Basically:
1) document.URL
should work fine in all major browsers. For more info refer to this Mozilla Developer Network article or this SO question
2) for an iframe
, you need to write something like: document.getElementById("iframe_ID").src.toString()
Using jquery, you can do he following in order to access every inch of the current URL:
www.mysite./XdAs2?x=123
assuming you have the following url: 1- get the url in a jQuery object
var currentUrl = $(location)
2- access everything using the following syntax
var result = currentUrl.attr('YOUR_DESIRED_PROPERTY');
some mon properties:
- hostname =>
www.mysite.
- pathname =>
XdAs2
- search =>
?x=123
I hope this may help.
If you want everything after the host, use window.location.pathname
Following on from Mohammed's answer you can do the same thing in vanilla javascript:
var urlPath = location.pathname,
urlHost = location.hostname;
本文标签: javascriptHow can I get everything after the forward slash in my urlStack Overflow
版权声明:本文标题:javascript - How can I get everything after the forward slash in my url? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743755325a2533403.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论