我已经编写了这段代码,但每次更改输入时都会发生这种情况。
var width =+ 0;
$("#Email").blur(function() //whenever you click off an input element
{
if( !$(this).val() ) { //if it is blank.
animateBar(width-=25);
} else {
animateBar(width+=25);
}
});
function animateBar(percentage)
{
$('#bar').animate({width: percentage+"%"}, 150);
}