//页面中下拉框均不可改变值
function SetReadOnly(obj) {
if (obj.type == "select-one") {
// 下拉框时
obj.onfocus = function () {
var index = this.selectedIndex;
this.onchange = function () {
this.selectedIndex = index;
};
};
}
function SetReadOnly(obj) {
if (obj.type == "select-one") {
// 下拉框时
obj.onfocus = function () {
var index = this.selectedIndex;
this.onchange = function () {
this.selectedIndex = index;
};
};
}
}
对select这个dom对象使用这个方法就好啦~~~在onload里~~