我知道以前有人问过这个问题,但我无法让它工作。
我正在页面上加载一个文件,该文件的路径和名称是 PHP 脚本中包含的变量。
我的 script.php 正在输出一个变量 $filename ,其中包含必须在 ajax 请求中打开的文件的路径。
因此,该文件可以是例如:
'../path/to/file/filea.json' 或 '../another/path/fileb.json'
我在我的 jQuery 中试过这个:
$.ajax({
url:'script.php',
success:$.ajax({
url: ??? // This ($filename) is what I'm trying to get from the 1st Ajax call
sucess: function(data){
//other code here
}
})
);
我知道在第二个 Ajax 调用中 $filename 是错误的,但我如何获取该变量的值?