jQuery change 事件 :
$(function(){
$("input:radio[name:sheetType]").change(function(){
var v = $(this).val();
if (v =="1"){
$("table1").show();
$("table2").hide();
}else{
$("table1").hide();
$("table2").show();
}
});