admin管理员组文章数量:1342637
in PHP you can get the document root by: $_SERVER['DOCUMENT_ROOT']
. Ej:
PHP
<?php
$root = $_SERVER['DOCUMENT_ROOT'];
$path = '/example/directory/';
$file = 'some-file.html';
include( $root . $path . $file );
...etc
?>
How can I get the value of $_SERVER['DOCUMENT_ROOT']
in jQuery/JavaScript?
jQuery
//Example:
var root = ????;
var path = 'example/directory/';
var file = 'some-file.txt';
$("#example").load( root + path + file );
Notes: Whenever I work on directories, on an HTML page, the "BASE" directory bees the directory of the current file. Ej, www.ejample/documents/examples/this-ex.html
. If I just call $("#example").load( path + file )
the request would be documents/examples/ + example/directory
. Like I said, it's not a question about server-side stuff. Is about getting a correct (and automatic) directory position
in PHP you can get the document root by: $_SERVER['DOCUMENT_ROOT']
. Ej:
PHP
<?php
$root = $_SERVER['DOCUMENT_ROOT'];
$path = '/example/directory/';
$file = 'some-file.html';
include( $root . $path . $file );
...etc
?>
How can I get the value of $_SERVER['DOCUMENT_ROOT']
in jQuery/JavaScript?
jQuery
//Example:
var root = ????;
var path = 'example/directory/';
var file = 'some-file.txt';
$("#example").load( root + path + file );
Notes: Whenever I work on directories, on an HTML page, the "BASE" directory bees the directory of the current file. Ej, www.ejample./documents/examples/this-ex.html
. If I just call $("#example").load( path + file )
the request would be documents/examples/ + example/directory
. Like I said, it's not a question about server-side stuff. Is about getting a correct (and automatic) directory position
- 2 js is client side, so you cant – user557846 Commented May 29, 2014 at 22:27
- look into this question- may be what you are looking for stackoverflow./questions/1368264/get-host-name-in-javascript – aarti Commented May 29, 2014 at 22:28
- @dagon if you carefully read my question, you'll see that this is not a server-sided issue/question. – Omar Juvera Commented May 29, 2014 at 22:29
- 4 And if you had a basic understanding of what you are talking about, then you would be aware that a DOCUMENT_ROOT is a purely server-side construct, which has no client-side meaning whatsoever … – C3roe Commented May 29, 2014 at 22:30
-
2
“Whenever I work on directories, on an HTML page, the "BASE" directory bees the directory I'm currently at” – that’s how relative paths are resolved, yes. And simply putting a leading slash in front of your
path
would probably solve your problem without any further effort … – C3roe Commented May 29, 2014 at 22:46
1 Answer
Reset to default 7Are you looking for document.location.hostname
?
var root = document.location.hostname;
$("#example").load( root + path + file );
本文标签: javascriptjQuery determine the server39s Document RootStack Overflow
版权声明:本文标题:javascript - jQuery: determine the [server's] Document Root - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743701942a2524472.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论