当前位置: 代码迷 >> Web前端 >> 文本框及上拉框设置disabled后,改变字体的颜色
  详细解决方案

文本框及上拉框设置disabled后,改变字体的颜色

热度:72   发布时间:2012-08-28 12:37:01.0
文本框及下拉框设置disabled后,改变字体的颜色

模拟实现disabled属性

<html>
	<head>
		<title>disabled设置字体颜色</title>		
	</head>
	<script>
	   function init(){
	      readOnlySelect(document.getElementById("readOnlyResType"));
	   }
	   function readOnlySelect(obj){
			obj.onfocus = function(){
				return this.blur();
			}
			obj.onmouseover = function(){
				return this.setCapture();
			}
			obj.onmouseout = function(){
				return this.releaseCapture();
			}
	 }
	</script>	
	<body onload='init()'>
		<input type="text" readonly style="color:#FF0000" value="红色" />
		<input type="text" disabled style="color:#FF0000" value="红色" />
		<span id="readOnlyResType">
		<select  style="color:#FF0000">
		   <option>红色</option>
		   <option>红色</option>
		</select>
	</body>
	</html>

?用readOnly后按Backspace键会执行到上一步。可以通过js禁止

function document.onkeydown() {
        if (event.keyCode == 8) {  //alert(document.activeElement.type);
            if (document.activeElement.type.toLowerCase() == "textarea" || document.activeElement.type.toLowerCase() == "text") {
                if (document.activeElement.readOnly == false)
                    return true;
            }
            return false;
        }
    }

?

  相关解决方案