读书人

单选按钮(radio)的撤消与选中

发布时间: 2012-10-06 17:34:01 作者: rapoo

单选按钮(radio)的取消与选中

var tempradio= null; function checkRadio(o){if($(o).is(":radio")){   if(tempradio== o){           tempradio.checked=false;           tempradio=null;       }       else{        tempradio= o;       }}......其他代码}
?

读书人网 >Web前端

热点推荐