即時通訊新的這個json和ajax的東西,可以some1幫助我呢?json,如何返回具體的值,而不是對象
MY JS:
$(document).ready(function(){
$(".testajax").submit(function(){
$.ajax({
type: "POST",
url: "controller.php",
data: $(".testajax").serialize()
})
.done(function(msg){
$(".result").html("name:" + msg.name);
});
return false;
});
這就是我的Json
$return= array("name"=>$_POST);
header('Content-Type: application/json');
echo json_encode($return);
我的HTML
<form method="post" action="controller.php" class="testajax">
<input type="text" name="name" value="">
<button type="submit">SAVE</button>
</form>
<p class="result"></p>
我想做的事情是,當我輸入 「瑪麗亞」 在形式和點擊保存...返回結果...應該是「Maria」。但是,相反我得到的是「名對象」
你的JSON是什麼樣的? –
@LeeTaylor PHP已發佈。 – OptimusCrime