我只是想做一个简单的 $.post 调用。
<body>
<div id="main">
<div id="diver">
</div>
<form id="entry_field_container" action="" method="post" accept-charset="utf-8">
<input type="text" name="entry_field" value="" id="entry_field">
<input id="send" type="submit" value="send">
</form>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$('#send').click(function(e){
e.preventDefault();
var txt = $('#entry_field').val();
$.post(
'http://localhost/proc.php',
{
name:'me',
text:txt
},
function(data){
console.log(data);
$('#diver').html(data)
},
'json'
)
})
});
</script>
在 proc.php 内部:
<?php
$name = $_POST['name'];
$text = $_POST['text'];
echo "{\"" . $name . "\", \"" . $text . "\"}";
?>
出于某种原因,POST 返回 200,但控制台永远不会返回data
,它只是空白。
我最难理解的是为什么这个 $.ajax 函数每次都有效。它不只是同一件事的一个更详细的例子吗?
$.ajax({
'type': 'POST',
'url': 'http://localhost/proc.php',
'async': true,
'cache': false,
'global': false,
'data': {
'name':'me',
'text':txt
},
'error': function(xhr,status,err){
alert("DEBUG: status"+status+" \nError:"+err);
},
'success': function(data){
console.log(data);
}
});