js页面中的代码如下
$('#showAll').click(function(){
$.ajax({
type : 'GET',
url : rootURL,
dataType : 'json',
contentType : 'application/json',
success : function(data){
$('#empList tbody').remove();
var employee =data.employee;
alert(employee.ID+"---"+employee.name);
$(employee).each(function(){
$('#empList').append('<tbody><tr><td><a href="#" id="' + $(this).ID + '">' +
$(this).find('ID').text()+'</a></td><td> ' + $(this).find('name').text()+ '</td><td> ' +
$(this).find('sal').text()+'</td></tr></tbody>');
});
}
});
});
回应如下。我怎么能在jQuery中操作
{"employee":[{"ID":"1","name":"vcv","sal":"4545"},{"ID":"2","name":"dfdf","sal":"dfdf"}]}
答案 0 :(得分:0)
您可以在success
方法中执行此操作:
var employee = data.employee;
$.each(employee, function (index, value) {
$('#empList').append(value.ID + ' ' + value.name + ' ' + value.sal);
});