js 제어 단추 스타일
//
function showImsg(buttids){
var ids = buttids.split(",");
var button;
for(var i=0;i<ids.length;i++){
button = document.getElementById(ids[i]);
if(button == null || button == undefined){
continue;
}
if(button.value.length<=4){
button.className="btn_sty2_4";
button.onmouseover = function(){
this.style.cursor="pointer";
this.className="btn_sty22_4";
}
button.onmouseout = function(){
this.style.cursor="pointer";
this.className="btn_sty2_4";
}
button.onmousedown = function(){
this.style.cursor="pointer";
this.className="btn_sty23_4";
}
}
if(button.value.length>4){
button.className="btn_sty2_6";
button.style.marginTop="3";
button.onmouseover = function(){
this.style.cursor="pointer";
this.className="btn_sty22_6";
}
button.onmouseout = function(){
this.style.cursor="pointer";
this.className="btn_sty2_6";
}
button.onmousedown = function(){
this.style.cursor="pointer";
this.className="btn_sty23_6";
}
}
}
}
common.css:
.btn_sty1_4 {
background: url("../images/btn_sty1_4.png") no-repeat scroll left top rgba(0, 0, 0, 0);
border: 0 none;
color: #FFFFFF;
font-weight: bold;
height: 29px;
line-height: 29px;
text-align: center;
width: 77px;
}
.btn_sty12_4 {
background: url("../images/btn_sty1_4.png") no-repeat scroll -87px top rgba(0, 0, 0, 0);
border: 0 none;
color: #FFFFFF;
font-weight: bold;
height: 29px;
line-height: 29px;
text-align: center;
width: 77px;
}
.btn_sty13_4 {
background: url("../images/btn_sty1_4.png") no-repeat scroll -174px top rgba(0, 0, 0, 0);
border: 0 none;
color: #FFFFFF;
font-weight: bold;
height: 29px;
line-height: 29px;
text-align: center;
width: 77px;
}
.btn_sty1_6 {
background: url("../images/btn_sty1_6.png") no-repeat scroll left top rgba(0, 0, 0, 0);
border: 0 none;
color: #FFFFFF;
font-weight: bold;
height: 29px;
line-height: 29px;
text-align: center;
width: 97px;
}
.btn_sty12_6 {
background: url("../images/btn_sty1_6.png") no-repeat scroll -107px top rgba(0, 0, 0, 0);
border: 0 none;
color: #FFFFFF;
font-weight: bold;
height: 29px;
line-height: 29px;
text-align: center;
width: 97px;
}
.btn_sty13_6 {
background: url("../images/btn_sty1_6.png") no-repeat scroll -214px top rgba(0, 0, 0, 0);
border: 0 none;
color: #FFFFFF;
font-weight: bold;
height: 29px;
line-height: 29px;
text-align: center;
width: 97px;
}
.btn_sty2_4 {
background: url("../images/btn_sty2_4.png") no-repeat scroll left top rgba(0, 0, 0, 0);
border: 0 none;
color: #FFFFFF;
font-weight: bold;
height: 25px;
line-height: 25px;
margin-right: 10px;
margin-top: 2px;
text-align: center;
width: 80px;
}
.btn_sty22_4 {
background: url("../images/btn_sty2_4.png") no-repeat scroll -88px top rgba(0, 0, 0, 0);
border: 0 none;
color: #FFFFFF;
font-weight: bold;
height: 25px;
line-height: 25px;
margin-right: 10px;
margin-top: 2px;
text-align: center;
width: 80px;
}
.btn_sty23_4 {
background: url("../images/btn_sty2_4.png") no-repeat scroll -175px top rgba(0, 0, 0, 0);
border: 0 none;
color: #FFFFFF;
font-weight: bold;
height: 25px;
line-height: 25px;
margin-right: 10px;
margin-top: 2px;
text-align: center;
width: 80px;
}
.btn_sty2_6 {
background: url("../images/btn_sty2_6.png") no-repeat scroll left top rgba(0, 0, 0, 0);
border: 0 none;
color: #FFFFFF;
font-weight: bold;
height: 25px;
line-height: 25px;
margin-right: 10px;
margin-top: 2px;
text-align: center;
width: 100px;
}
.btn_sty22_6 {
background: url("../images/btn_sty2_6.png") no-repeat scroll -107px top rgba(0, 0, 0, 0);
border: 0 none;
color: #FFFFFF;
font-weight: bold;
height: 25px;
line-height: 25px;
margin-right: 10px;
margin-top: 2px;
text-align: center;
width: 100px;
}
.btn_sty23_6 {
background: url("../images/btn_sty2_6.png") no-repeat scroll -214px top rgba(0, 0, 0, 0);
border: 0 none;
color: #FFFFFF;
font-weight: bold;
height: 25px;
line-height: 25px;
margin-right: 10px;
margin-top: 2px;
text-align: center;
width: 100px;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.