Ajax从其他来源返回数据

时间:2014-07-16 12:09:50

标签: javascript php jquery html ajax

我在jquery中的$ .ajax没什么问题。我正在调用文件response.php,但我收到来自index.php的回复。

文件结构:

libs/response.php
js/main.js
...
index.php

的index.php

<!DOCTYPE html>
<html>

    <head>
...
<button id="bttClick">click</button>
...
</html>

Main.js

 $('#bttClick').click(function(){
        $.ajax({
            'url': 'libs/response.php',
            'type':'POST',
            'data': arr
         }).done(function(resp){
             alert(resp);
         });
 });

Response.php

<? 
echo "ECHO";
?>

任何人都可以提供帮助?感谢

答案: htaccess的

0 个答案:

没有答案