1

我正在尝试使用 Jquery 执行 AJAX 请求。

JS 文件位于此处:

root/templates/wooden_tpl/scripts/script.js

我尝试使用这个函数从这个文件中请求数据:

$.post('ajax/get_blog_info.php',function(data){
    alert(data);
});

该文件位于此目录中:

root/templates/wooden_tpl/scripts/ajax/get_blog_info.php

由于某种原因,这不起作用。

包含 script.js 的文件包含在根目录中。

我的假设是 javascript 不包括相对于它的当前通行证。真的?

谢谢。

4

1 回答 1

2

Important is the context where the javascript is executed. And this is the context of the including file, thus you have to use the including page's path.

于 2012-06-13T12:10:25.243 回答