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"); });
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!