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

Example code for jQuery form acquisition and loss of focus input box prompt effects_jquery

WBOY
Release: 2016-05-16 17:27:22
Original
1027 people have browsed it
Copy code The code is as follows:

$("#focus .input_txt").each(function() {
var thisVal=$(this).val();
//Determine whether the value of the text box is empty. If there is a value, hide the prompt. If there is no value, display it.
if(thisVal! =""){
$(this).siblings("span").hide();
}else{
$(this).siblings("span").show();
}
//Focused input box validation
$(this).focus(function(){
$(this).siblings("span").hide();
} ).blur(function(){
var val=$(this).val();
if(val!=""){
$(this).siblings("span"). hide();
}else{
$(this).siblings("span").show();
}
});
})
$(" #keydown .input_txt").each(function(){
var thisVal=$(this).val();
// Determine whether the value of the text box is empty. If there is a value, hide the prompt. , if there is no value, it will be displayed
if(thisVal!=""){
$(this).siblings("span").hide();
}else{
$(this). siblings("span").show();
}
$(this).keyup(function(){
var val=$(this).val();
$(this ).siblings("span").hide();
}).blur(function(){
var val=$(this).val();
if(val!="" ){
$(this).siblings("span").hide();
}else{
$(this).siblings("span").show();
}
})
})
})




span>
                                                                  text" class="input_txt border_radius" />


Input Type prompt disappears


                                                                                                                                                      /label>





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
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!