记录学习(js设置radio,select为只读)

13年前
var countData="男"  var sexAll=document.getElementsByName("sexName");    var sexshow;    for ( var i = 0; i < sexAll.length; i++) {        if(sexAll[i].value==countData){          sexAll[i].checked=true;      sexshow=sexAll[i];         }    }    for ( var i = 0; i < sexAll.length; i++) {        sexAll[i].onclick=function(){sexshow.checked=true;};    }
这是radio的js版只读
var birthYearAll=document.getElementById("birthYear");  birthYearAll.onfocus = function() {                  var index = this.selectedIndex;                  this.onchange = function() {                      this.selectedIndex = index;                  };              };
这是select的js版只读