美好的一天,請先檢查我的腳本。從ajax請求接收數組
$(document).ready(function() {
$("#findmynip").click(function() {
$("#hasilnip").html('<img src="<?=base_url();?>assets_global/images/loader.gif"> Please wait');
var nipnnya = $("#nipnya").val();
$.ajax({
type: "POST",
data: {
nip: nipnnya
},
datatpe: 'json',
url: "<?=base_url();?>registrasi/cek_ada/",
success: function(hslnip) {
if (hslnip) {
alert(hslnip);
$("#name").html(hslnip);
//How do i do this
$("#name").html(hslnip['FullName']);
$("#birthday").html(hslnip['BirthDate']);
} else {
$("#name").html('Failed');
}
}
});
return false;
});
});
我想是接收Ajax請求我的HTML。當我嘗試console.log(hslnip);
結果是{"FullName":"BUNGA","BirthDate":"1994-10-03 00:00:00.000"}
。任何幫助,將不勝感激。
我想收到什麼是
<div id='name'></div>
<div id='birthday'></div>
我在這部分取得錯字:datatpe: 'json',
,我將其更改爲dataType: 'json'
。現在正在工作,thans幫助球員。
你想收到什麼? – guradio
[demo](https://jsfiddle.net/o0opjp45/)檢查演示將其添加到您的代碼 – guradio