色尼玛亚洲综合影院,亚洲3atv精品一区二区三区,麻豆freexxxx性91精品,欧美在线91

鼠標經過的文本框textbox變色

JS文件:
復制代碼 代碼如下:
function mouseAction() {
var textInputs = document.getElementsByTagName("input");
var len = textInputs.length;
var index = 0;
var textInput;
/*
也能用 for in 語句遍歷
for (textInput in textInputs){
textInputs[textInput].onmouseover = functionName;
}
*/
for( index = 0; index < len; index++ ) {
textInput = textInputs[index];
if( textInput.getAttribute("type") == "text" ){
textInput.onmouseover = function (){
//也能用這種方式 this.style.backgroundColor = "red";
this.className = "txtMouseOver"; //要先在HTML中引入CSS文件
}; //注意要加分號

textInput.onmouseout = function(){
this.className = "txtMouseOut";
};

textInput.onfocus = function(){
this.className = "txtMouseFocus";
};

textInput.onblur = function(){
this.className = "txtMouseBlur";
};
}
}
}

//也可以直接跟一個函數名,不要加引號,括號 window.onload = mouseAction;
window.onload = function(){
mouseAction();
};

CSS文件:
復制代碼 代碼如下:
/*主體居中顯示*/
body{
    width: 80%;
    height: 800px;
    position: relative;
    margin-left: 10%;
    /*left: -40%;*/
    border: #00CCFF solid thin;
}
.txtMouseOver
{
border-color: #9ecc00;
}
.txtMouseOut
{
border-color: #84a1bd;
}
.txtMouseFocus
{
border-color: #9ecc00;
background-color: #e8f9ff;
}
.txtMouseBlur
{
border-color: #84a1bd;
background-color: #ffffff;
}

JavaScript技術鼠標經過的文本框textbox變色,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 辽宁省| 曲沃县| 五常市| 曲周县| 伊宁市| 如东县| 安徽省| 阳春市| 富民县| 进贤县| 勐海县| 平原县| 商都县| 林西县| 泰来县| 苏尼特左旗| 栾城县| 浪卡子县| 论坛| 宜兰市| 商丘市| 苏州市| 出国| 锦屏县| 连南| 奉节县| 永新县| 长沙市| 同仁县| 海淀区| 武穴市| 无为县| 苍溪县| 金溪县| 崇州市| 昌吉市| 云浮市| 嘉鱼县| 含山县| 威海市| 宜章县|