2

simple problem with a simple question. I have a string, in C# i can put it through a uri and access LocalPath

How do i get LocalPath in jquery or javascript? ( LocalPath: "/asas")

{http://z.com/asas?sadfdsgfg}

AbsolutePath: "/asas"
AbsoluteUri: "http://z.com/asas?sadfdsgfg"
Authority: "z.com"
DnsSafeHost: "z.com"
Fragment: ""
Host: "z.com"
HostNameType: Dns
IsAbsoluteUri: true
IsDefaultPort: true
IsFile: false
IsLoopback: false
IsUnc: false
LocalPath: "/asas"
OriginalString: "http://z.com/asas?sadfdsgfg"
PathAndQuery: "/asas?sadfdsgfg"
Port: 80
Query: "?sadfdsgfg"
Scheme: "http"
Segments: {string[2]}
UserEscaped: false
UserInfo: ""

1 Answer 1

3

Well, in the browser the "window.location" object has a "pathname" property, which is (I think) what you're asking for. There are other properties for the "protocol", "host", "port", etc: http://msdn.microsoft.com/en-us/library/ms952653.aspx

Now, that's the local path for the page you're working from; in other words, that's not a general-purpose way to get the local path for any old URL floating around in space.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.