我試圖將文本框的值添加到按鈕click.But的表中,但我不知道ajax.please檢查我的code.Is我的ajax部分正確嗎?誰能幫我?用jquery ajax將數據傳遞給服務器
var roleList=[{
"no" :"1",
"name":"xxx",
"dlt" :"Delete"
},
{
"no" :"2",
"name":"yyy",
"dlt" :"Delete"
}
];
$(document).ready(function(){
for(var i=0;i<roleList.length;i++)
{
var table='<tr><td>'+roleList[i].no+'</td><td>'+roleList[i].name+
'</td><td><button class="btn dlt" data-toggle="modal" data-target="#confirm"><i class="fa fa-trash-o"></i>'+roleList[i].dlt+'</button></td><tr>';
$('#roleListTable').append(table)
}
});
我嘗試這樣做:
if (name != null) {
$.post("",{empRoleList:roleList},
function(data){
if (data != 0) {
alert("success");
$('#name').each(function() {
$(this).val('');
});
var ajxObj = { name: "Personal", id: 0 };
$.ajax({
type: 'POST',
url: "",
contentType: "application/json; charset=utf-8",
data: JSON.stringify(ajxObj),
dataType: 'html',
success: function (response) {
$('#roleListTable').html(response);
// $('#grdUser').show();
},
failure: function (response) {
alert(response.responseText);
}
});
}
else { alert("Fail"); }
});
}
https://jsfiddle.net/95gnnpL1/1/
爲什麼你想使用Ajax的功能呢? –
你應該只是閱讀一些文檔,它根本不難 –
你可以不用ajax來做到這一點。是否想要獲取數據表單數據庫? –