onFocus事件就是當光標落在文本框中時發生的事件。html
onBlur事件是光標失去焦點時發生的事件。orm
能夠編以下例子htm
1.html事件
<HTML>
<HEAD>
<TITLE>使用onBlur事件處理程序</TITLE>
</HEAD>
<BODY BGCOLOR="lavender">
<FORM name="F1">
<INPUT TYPE=text NAME=text1 value="1111ONBLUR_green" ONBLUR="(document.bgColor='green')">
<INPUT TYPE=text NAME=text2 value="2222ONBLUR_black" ONBLUR="(document.bgColor='black')">
<INPUT TYPE=text NAME=text2 value="3333ONBLUR_yellow" ONBLUR="(document.bgColor='yellow')">
<br>
<p>
<INPUT TYPE=text NAME=text3 value="4444onfocus_blue" onfocus="(document.bgColor='blue')">
<INPUT TYPE=text NAME=text4 value="5555onfocus_red" onfocus="(document.bgColor='red')">
<INPUT TYPE=text NAME=text4 value="6666onfocus_orange" onfocus="(document.bgColor='orange')">
</FORM>
</BODY>
</HTML>input
還有如下例子it
2.htmltest
3 <!-- 文件說明:OnFocus事件 -->
04 <!-- ------------------------------ -->
05 <html>
06 <head>
07 <title>OnFocus事件</title>
08 </head>
09 <body>
10 <Form>cli
11 <input type="text" name="test1" value="test1" onclick=alert("能夠關掉!")>
11 <input type="text" name="test1" value="test1" onblur=alert("能夠關掉aaaaaaa!")>程序
11 <input type="text" name="test1" value="test1" onclick=alert("能夠關掉bbbbbbbbb!")>
12 <input type="text" name="test2" value="一按我就沒法關掉了,haha" onFocus=alert("我成爲了輸入焦點!")>
13 </Form>
14 </body>
15 </html>文件