我之所以问这个问题是因为我需要做一些事情,而且我在使用 jQuery 时遇到了一些问题。所以我要提出这个问题,因为其他人也可能有这个问题。
在我的另一个问题中发布的答案中,用户 Felix 告诉我做这样的事情:
$(document).keypress(function(e) {
e.preventDefault();
if(e.which == 13 ) {
if($("#searchInput").is(":focus")) {
alert("search form submitted");
return false;
} else {
alert("save form submitted");
return false;
}
}
});
这似乎是我需要的,但是,条件if($("#searchInput").is(":focus"))
总是返回 True,不管控制的重点是什么。
任何人都知道为什么会发生这种情况或我可以通过其他任何方式做到这一点吗?