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

JQuery implements simple verification code prompt solution_jquery

WBOY
Release: 2016-05-16 17:46:11
Original
944 people have browsed it

Let’s look at the renderings first:
JQuery implements simple verification code prompt solution_jquery
Requirement: When the input box gets focus, the verification image is automatically displayed.
The code is as follows (for learning and reference only):

Copy the code The code is as follows:

/***********************The following is the verification code object*****************/
var Validation = {};
Validation.init = function(eleName,imageSrc){
this.image = imageSrc;
$('#' eleName).focusin(function(){
Validation.show(eleName);
});
}
Validation.image = '';
Validation.display=false;
Validation.width = '100px';
Validation.height = '30px';
Validation.div = null;
Validation.show = function(eleName){
if(this.display= =false){
//First display
if(this.div==null){
$('#' eleName).after('');
this.div = $('#div_validation_' eleName);
this.div.css('position ','absolute');
this.div.css('cursor','pointer');
this.div.css('border','1px solid #CCC');
this .div.css('background-color','#FFF');
this.div.css('background-position','center');
this.div.css('background-repeat ','no-repeat');
this.div.css('height',this.height);
this.div.css('width',this.width);
var objOffset = $('#' eleName).offset();
objOffset.top =$('#' eleName).height() 6;
this.div.offset(objOffset);
this. div.css('background-image','url(' Validation.image '&_t=' new Date() ')');
this.div.css('display','inline-block');
this.display = true;
//Click to replace
this.div.click(function(){
Validation.div.css('background-image','url(' Validation. image '&_t=' new Date() ')');
});
}
else{
this.div.css('background-image','url(' Validation. image '&_t=' new Date() ')');
this.display = true;
this.div.css('display','inline-block');
}
}
}
Validation.hide =function(){
if(this.display==true){
this.display = false;
this.div.hide();
}
}

Usage:
Copy code The code is as follows:

//Verification code object initialization
Validation.init('validation','Ajax.ashx?handle=validation');
//Input box ID verification Image address
//Hide
Validation.hide();
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