答案 0 :(得分:1)
您可以添加:visible选择器:
$(document).ready(function() {
var table = $('#example').DataTable();
$('button').click( function() {
var data = table.$('input:visible, select:visible').serialize();
alert(
"The following data would have been submitted to the server: \n\n"+
data.substr( 0, 120 )+'...'
);
return false;
} );
} );