复选框ajax提交,Ajax调用复选框

我有两个复选框,现在单击其中一个复选框,我想对jsp页面进行ajax调用。该jsp页面将显示一个包含从数据库中获取数据的表。

现在,问题是说我有两个复选框,如:

Email Notification

File Sharing Notification

怎么办?请帮忙

My Script part :

$(document).ready(function () {

$('.search-select').on('change', function(){

$('.search-inputs').children().hide();

var classn =$(this).find(":selected").val();

//alert(classn);

if(classn=='searchName')

{

//alert("searchname");

$('.'+"searchName").show();

}

else if(classn=='searchType')

{

//alert("searchType");

$('.'+"searchType1").show();

$('.'+"searchtype1label").show();

$('.'+"searchType2").show();

$('.'+"searchtype2label").show();

}

else if(classn=='searchDate'){

//alert("searchType");

$('.'+"searchDateFrom").show();

$('.'+"searchDateTo").show();

$('.'+"Datesubmit").show();

}

});

$('#emailNotification').on('change',function() {

//var checked = $(this).is(':checked');

if(this.checked){

//alert("in");

$.ajax({

type: "POST",

url: "searchOnType.jsp",

data: {mydata: "emailNotification"},

success: function(data) {

alert('it worked');

$('#container').html(data);

},

error: function() {

alert('it broke');

},

complete: function() {

alert('it completed');

}

});

}

});

});

但是如何在同一页面上显示表格?