1

このコードを作成しましたが、入力を変更するたびに発生します。

    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);
        }
4

1 に答える 1

0

やったほうがいい

var width =+ 0;
$("#Email").focusout(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);
    }

ここに、探しているイベントのドキュメントがあります http://api.jquery.com/focusout/

于 2013-11-28T18:56:16.657 に答える