Home > Web Front-end > JS Tutorial > body text

JQuery sets the text box to get the focus style (code attached)

php中世界最好的语言
Release: 2018-04-26 14:03:12
Original
1846 people have browsed it

This time I will bring you JQuerySet the text box to get the focus style (with code), what are the precautions for setting the text box to get the focus style in JQuery, the following is a practical case , let’s take a look.

//设置文本框和密码框得到焦点时的样式 
$("#tblReg input[type=text],#tblReg input[type=password]").focus(function () { 
$(this).addClass("myFocus"); 
}).blur(function () { 
$(this).removeClass("myFocus"); 
});
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to the php Chinese website Other related articles!

Recommended reading:

jQuery monitors text box events and explains the processing steps in detail

jquery implements click label to trigger text box events Function

jQuery dynamic operation of Table cells

The above is the detailed content of JQuery sets the text box to get the focus style (code attached). For more information, please follow other related articles on 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