0

我有以下代码,我对 JavaScript 比较陌生,所以谁能告诉我为什么它没有进入第 1 阶段 + 告诉我它是如何完成的?

var textContainer = '#text';
var inputLine = 'input';

var username = null;
var stage = 0;

$(function(){
        if(0 == stage){
            $(function(){
                $(textContainer).text('What is your name?');
                $(inputLine).focus();
                $(inputLine).keypress(function(e){
                    if (e.keyCode == 13 && !e.shiftKey) {
                        e.preventDefault();
                        username = $(this).val();
                        $(this).val('');
                        stage = 1;
                    }
                });
            });
        }
        if(1 == stage){
            $(textContainer).text('Hi there, ' + username + '.');
        }
    });
4

1 回答 1

1

你所拥有的没有多大意义,所以我猜这就是你想要做的:

$(function(){
     var textContainer = $('#text'),
         inputLine = $('input');

     textContainer.text('What is your name?');
     inputLine.focus().on('keyup', function(e){
        if (e.which === 13) {
            e.preventDefault();
            textContainer.text('Hi there, ' + this.value + '.');
            this.value = "";
        }
    });
});

小提琴

stage设置为零后,除了零之外没有其他方法吗?
事件处理程序内部发生了什么,“稍后”发生,所以stage在事件处理程序之后检查仍然给你......等待它......零?

于 2013-06-08T17:12:03.680 回答