我在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的