单击按钮时如何获取最后一个聚焦文本框输入

时间:2015-02-27 05:44:46

标签: javascript jquery focus

我正在尝试按下我的按钮时获得最后一个聚焦元素,但我没有运气。这是我的javascript函数:

function input(e) {
    e = e.charAt(3);
    $(".textboxclass").each(function(index, value) {
        $(this).val();
        if ($(this).is(':focus')) {
            $(this).val($(this).val() + e);
            $(this).focus();
        }
    });
}

并且以下行不正常工作

$(this).is(':focus')

当我在它工作之前设置alert()时。

谢谢。

1 个答案:

答案 0 :(得分:0)

它无法工作的原因是因为每次单击按钮时,最后一个聚焦文本框都会失去焦点,您需要找到另一种方法来做您想做的事情。我能想到的一种方法是使用一种方法,将聚焦的元素存储到全局变量中,然后在有条件的if中使用它。试试吧:

    var $focused;

    $(".textboxclass").focus(function(){
        $focused = $(this);
    });

    function test(id) {
        e = id.charAt(3);
        $(".textboxclass").each(function() {
            if ($(this)[0] == $focused[0]) {
                $(this).val($(this).val() + e);
                $(this).focus();
            } else {
                console.log("NOT focused");
            }
        });
    }