表单radio点击,取消按钮
时间:2014-08-13 15:12:27
收藏:0
阅读:339
var tempradio= null;
function change(checkedRadio)
{
if(tempradio== checkedRadio){
tempradio.checked=false;
tempradio=null;
}
else{
tempradio= checkedRadio;
}
}
原文:http://3900835.blog.51cto.com/3890835/1539354
评论(0)