zoukankan      html  css  js  c++  java
  • onBlur事件与onfocus事件(js)

    onFocus事件就是当光标落在文本框中时发生的事件。

    onBlur事件是光标失去焦点时发生的事件。

    可以编如下例子

    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

    3 <!-- 文件说明:OnFocus事件 -->
    04 <!-- ------------------------------ -->
    05 <html>
    06 <head>
    07 <title>OnFocus事件</title>
    08 </head>
    09 <body>
    10 <Form>

    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>

  • 相关阅读:
    tsm 存放磁带到带库
    tsm 切记
    添加路由时啥时候是dev啥时候是gw
    网卡上绑定多个IP地址
    更改本地环回地址引发的血案
    自学网络 arp_ignore/arp_announce
    do_try_to_free_pages
    如何用ssh实现端口的映射
    显示系统中所有的socket信息
    ifstat查看网络流量的原理
  • 原文地址:https://www.cnblogs.com/leeshine-luo/p/5654565.html
Copyright © 2011-2022 走看看