我正在尝试按下我的按钮时获得最后一个聚焦元素,但我没有运气。这是我的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()时。
谢谢。
答案 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");
}
});
}