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"}]}