我正在执行index.html
来自服务器 test1.com 的文件。Mootools 库文件包含在此index.html
文件中。
以下是调用 PHP 页面的脚本:
<script>
var request = new Request.JSON({
url: 'http://test1.com/ajaxtest.php',
onSuccess: function(data) {
// the request was completed.
alert(JSON.stringify(data));
}
}).send();
</script>
ajaxtest.php
<?php
$arr['age'] = 30;
$arr['place'] = 'London';
echo json_encode($arr); exit;
?>
在执行时index.html
,我得到了正确的输出”
{“年龄”:30,“地点”:“伦敦”}
现在,ajaxtest.php
驻留在另一台服务器上,例如 test2.com。如何更改上述脚本以使其像以前一样工作?