$(function () {
$("#button3").click(function () {
var text = $("#text2").val();
//var text = "001101";
if (text != "" && text != null) {
DeleteBy_sno(text)
}
else {
alert("请输入学号");
}
});
});
function DeleteBy_sno(id) {
$.ajax({
type: "POST",
url: "Controllers/deleteBysno.ashx",
date: "id=" + id,
success: function (msg) {
if (msg) {
alert("删除成功!");
// $('#' + $(temp).attr('sno')).remove();
}
else {
alert("0");
}
}
})
}