js 를 통 해 input,select 기본 글꼴 색상 수정
<textarea cols="50" rows="5" id="textarea" onfocus="if(value==' '){value='';document.getElementById('textarea').style.color='#000'}" onblur="if (value ==''){value=' ';document.getElementById('textarea').style.color='#999'}"> </textarea>
select 기본 선택 항목 색상 은 회색 이 고 선택 후 검은색 으로 변 합 니 다(js 구현)
<script>
var unSelected = "#999";
var selected = "#333";
$(function () {
$("select").css("color", unSelected);
$("option").css("color", selected);
$("select").change(function () {
var selItem = $(this).val();
if (selItem == $(this).find('option:first').val()) {
$(this).css("color", unSelected);
} else {
$(this).css("color", selected);
}
});
})
</script>
input 기본 값 이 있 고 회색 입 니 다.클릭 후 기본 값 이 사라 지고 입력 값 이 검은색 으로 변 합 니 다.
<script type="text/javascript">
$(function() {
// text input
$(".form input[text]").each(function(){
$(this).setDefauleValue();
});
//
$("#key").setDefauleValue();
})
//
$.fn.setDefauleValue = function() {
var defauleValue = $(this).val();
$(this).val(defauleValue).css("color","#eee");
return this.each(function() {
$(this).focus(function() {
if ($(this).val() == defauleValue) {
$(this).val("").css("color","#000");//
}
}).blur(function() {
if ($(this).val() == "") {
$(this).val(defauleValue).css("color","#999");//
}
});
});
}
</script>
</head>
<body>
<form class="form">
<input type="text" size="30" value=" ">
<br>
<input type="text" size="30" value=" ">
</form>
<br>
<br>
<br>
<input type="text" size="30" id="key" value=" ">
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
application ---- enter and save the file codeInput file name and content - input_content.html Receive content and save file and content - input_content01.jsp...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.