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.

  1. Is document.URL the best way to get the current URL or will I have issues with some browsers?

  2. 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.

  1. Is document.URL the best way to get the current URL or will I have issues with some browsers?

  2. 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

Share Improve this question edited Oct 5, 2013 at 10:59 ivarni 17.9k17 gold badges78 silver badges93 bronze badges asked Oct 5, 2013 at 10:52 BrandonBrandon 1011 gold badge3 silver badges11 bronze badges 1
  • Are you looking for this Regex:- /(\/\/[^\/]+)?\/.*/ – Rahul Tripathi Commented Oct 5, 2013 at 10:53
Add a ment  | 

4 Answers 4

Reset to default 6

Here'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