淘先锋技术网

首页 1 2 3 4 5 6 7

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();

}

});

          });