any smart way of doing a "root" based path referencing in javascript just the way we have ~/ in asp.net ?
|
7
|
|||||
|
|
|
Have your page generate a tag with something like:
Then, have a function in JavaScript that extracts the value such as:
|
||||||||||||||
|
|
|
You could also use the asp.net feature
Notice: I don't encode the path to a JSON-string (escape quotes, control characters etc). I don't think this is a big deal (quotes for example aren't allowed unescaped in an URL), but one never knows... |
||
|
|
|
|
Use base tag:
... from now any link use on this page, no matter in javascript or html, will be relative to the base tag, which is "http://www.example.com/myapp/". |
||
|
|
|
I usually create a variable at the top of the js file and assign it the root path. Then I use that variable when referencing a file.
|
||||
|
|
|
~/ is the application root and not a literal root, it interpets ~/ to mean To do a literal root in JavaScript it's just /, i.e "/root.html". There's no way of getting an application level path like that in JavaScript. You could hack it in the ASPX file and output it in a tag but I would consider the security implications of that. |
||||||||
|
