JQuery DataTable 插件,选择表格一行操作后,不再具有记忆选择,如何设置?求大神给予帮助!!

2024-11-18 23:26:55
推荐回答(1个)
回答1:

$(function(){
$('#send').click(function(){
$.ajax({
type: "GET",
url: "test.json",
data: {username:$("#username").val(), content:$("#content").val()},
dataType: "json",
success: function(data){
$('#resText').empty(); //清空resText里面的所有内容
var html = ''; 
$.each(data, function(commentIndex, comment){
html += '
' + comment['username']
+ ':
+ '

';
});
$('#resText').html(html);
}
});
});
});

相关问答