我有一个ajax函数:
$.post("/ajax.php",{query:data},function(result){...
的位置ajax.php
在我的域的根目录中(即 site.com/ajax.php)
当用户在文件夹中(即 site.com/m/)时,会调用相同的脚本
我面临的问题是我想引用根目录。通常/file.php
指的是主目录,而不是file.php
.
我的请求正在发送到http://site.com/m/ajax.php
。
有谁知道我应该怎么做?
我有一个ajax函数:
$.post("/ajax.php",{query:data},function(result){...
的位置ajax.php
在我的域的根目录中(即 site.com/ajax.php)
当用户在文件夹中(即 site.com/m/)时,会调用相同的脚本
我面临的问题是我想引用根目录。通常/file.php
指的是主目录,而不是file.php
.
我的请求正在发送到http://site.com/m/ajax.php
。
有谁知道我应该怎么做?