Home > Web Front-end > JS Tutorial > Cliché onBlur event and onfocus event (js)

Cliché onBlur event and onfocus event (js)

高洛峰
Release: 2017-01-10 11:22:08
Original
1405 people have browsed it

The onFocus event is an event that occurs when the cursor falls in the text box.

The onBlur event is an event that occurs when the cursor loses focus.

You can compile the following examples

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=&#39;green&#39;)">
<INPUT TYPE=text NAME=text2 value="2222ONBLUR_black" ONBLUR="(document.bgColor=&#39;black&#39;)">
<INPUT TYPE=text NAME=text2 value="3333ONBLUR_yellow" ONBLUR="(document.bgColor=&#39;yellow&#39;)">
<br>
<p>
<INPUT TYPE=text NAME=text3 value="4444onfocus_blue" onfocus="(document.bgColor=&#39;blue&#39;)">
<INPUT TYPE=text NAME=text4 value="5555onfocus_red" onfocus="(document.bgColor=&#39;red&#39;)">
<INPUT TYPE=text NAME=text4 value="6666onfocus_orange" onfocus="(document.bgColor=&#39;orange&#39;)">
</FORM>
</BODY>
</HTML>
Copy after login

There are also the following examples

2. html

<!-- 文件说明:OnFocus事件 -->
 <!-- ------------------------------ -->
 <html>
 <head>
 <title>OnFocus事件</title>
 </head>
 <body>
 <Form>
 
 <input type="text" name="test1" value="test1" onclick=alert("可以关掉!")>
 <input type="text" name="test1" value="test1" onblur=alert("可以关掉aaaaaaa!")>
 
 <input type="text" name="test1" value="test1" onclick=alert("可以关掉bbbbbbbbb!")>
 <input type="text" name="test2" value="一按我就无法关掉了,haha" onFocus=alert("我成为了输入焦点!")>
 </Form>
 </body>
 </html>
Copy after login

The above cliché about onBlur event and onfocus event (js) is all the content shared by the editor. I hope it can give you a reference, and I also hope that everyone will support PHP. Chinese website.

For more articles related to the clichéd onBlur event and onfocus event (js), please pay attention to the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template