JavaScript實現(xiàn)為input與textarea自定義hover,focus效果的方法
本文實例講述了JavaScript實現(xiàn)為input與textarea自定義hover,focus效果的方法。分享給大家供大家參考。具體如下:
這里演示JavaScript為input輸入框和textarea文本框自定義hover,focus效果,hover也就是鼠標放上去之后的效果,focus是鼠標焦點問題,要實現(xiàn) 這種效果,需要JS來配合,這個例子就是很不錯的,它把網(wǎng)頁上輸入框和文本框都加入了鼠標懸停和鼠標焦點效果。
運行效果截圖如下:

在線演示地址如下:
http://demo.jb51.net/js/2015/js-input-textarea-hover-focus-style-codes/
具體代碼如下:
<title>JavaScript為input/textarea自定義hover,focus效果</title>
<script type="text/javascript">
function suckerfish(type, tag, parentId) {
if (window.attachEvent) {
window.attachEvent("onload", function() {
var sfEls = (parentId==null)?document.getElementsByTagName(tag):document.getElementById(parentId).getElementsByTagName(tag);
type(sfEls);
});
}
}
sfHover = function(sfEls) {
for (var i=0; i < sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=" iptHover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(" iptHover\\b"), "");
}
}
}
sfFocus = function(sfEls) {
for (var i=0; i < sfEls.length; i++) {
sfEls[i].onfocus=function() {
this.className+=" iptFocus";
}
sfEls[i].onblur=function() {
this.className=this.className.replace(new RegExp(" iptFocus\\b"), "");
}
}
}
</script>
<style type="text/css">
textarea{
border:1px solid #BBE1F1;
width:250px;
height:80px;
}
.iptHover,input:hover,textarea:hover{
border:1px solid #77C2E3;
}
.iptFocus,input:focus,textarea:focus{
border:1px solid #77C2E3;
background-color:#EFF7FF;
}
</style>
<input type="text" name="textfield" /><br />
<textarea name="textarea"></textarea>
<script type="text/javascript">
suckerfish(sfHover, "input");
suckerfish(sfFocus, "input");
suckerfish(sfHover, "textarea");
suckerfish(sfFocus, "textarea");
</script>
希望本文所述對大家的javascript程序設(shè)計有所幫助。
- 基于JS如何實現(xiàn)類似QQ好友頭像hover時顯示資料卡的效果(推薦)
- JS組件Bootstrap dropdown組件擴展hover事件
- javascript解決IE6下hover問題的方法
- js模仿hover的具體實現(xiàn)代碼
- js hover 定時器(實例代碼)
- jQuery控制圖片的hover效果(smartRollover.js)
- js操作css屬性實現(xiàn)div層展開關(guān)閉效果的方法
- 詳解Javascript動態(tài)操作CSS
- JS操作CSS隨機改變網(wǎng)頁背景實現(xiàn)思路
- 使用js操作css實現(xiàn)js改變背景圖片示例
- JS實現(xiàn)css hover操作的方法示例

