輸入框事件處理
阿新 • • 發佈:2018-09-09
dom code div ntb eight class idt rip element
- 輸入框獲取焦點事件:onfocus
- 輸入框失去焦點事件:onblur
代碼示例:
<body> <input type="text" placeholder="請輸入任意內容" id="input"> <script> //獲取DOM元素 var input=document.getElementById("input"); //獲取焦點 input.onfocus=function(){ this.style.width="400px";this.style.height="50px"; this.style.border=‘2px solid yellow‘; } //失去焦點 input.onblur=function(){ this.style.color="blue"; this.style.width="200px"; } </script> </body>
輸入框事件處理