欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

老生常談onBlur事件與onfocus事件(js)

 更新時(shí)間:2016年07月09日 10:08:56   投稿:jingxian  
下面小編就為大家?guī)硪黄仙U刼nBlur事件與onfocus事件(js)。小編覺得挺不錯(cuò)的,現(xiàn)在就分享給大家,也給大家做個(gè)參考。一起跟隨小編過來看看吧

onFocus事件就是當(dāng)光標(biāo)落在文本框中時(shí)發(fā)生的事件。

onBlur事件是光標(biāo)失去焦點(diǎn)時(shí)發(fā)生的事件。

可以編如下例子

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>

還有以下例子

2.html

<!-- 文件說明:OnFocus事件 -->
 <!-- ------------------------------ -->
 <html>
 <head>
 <title>OnFocus事件</title>
 </head>
 <body>
 <Form>

 <input type="text" name="test1" value="test1" onclick=alert("可以關(guān)掉!")> 
 <input type="text" name="test1" value="test1" onblur=alert("可以關(guān)掉aaaaaaa!")>

 <input type="text" name="test1" value="test1" onclick=alert("可以關(guān)掉bbbbbbbbb!")> 
 <input type="text" name="test2" value="一按我就無法關(guān)掉了,haha" onFocus=alert("我成為了輸入焦點(diǎn)!")>
 </Form>
 </body>
 </html>

以上這篇老生常談onBlur事件與onfocus事件(js)就是小編分享給大家的全部內(nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論