/*表格变色*/
$(".tr2").mouseover(function(){
$(this).css("background","#f2c27a");
}).mouseout(function(){
$(this).css("background","#f1f6fc")
});
/*复选框全选*/
$("#selALL").click(function()
{
$("input[type=‘checkbox‘][name=‘checkbox_inp‘]").prop(‘checked‘,$(this).prop("checked"));
});
$("#unselALL").click(function() {
$this=$(".checkbox1");
$("input[type=‘checkbox‘][name=‘checkbox_inp‘]").each(function()
{
$(this).prop(‘checked‘,!$(this).prop(‘checked‘));
});
});