Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我尝试了一些建议,例如在用户点击“向下箭头”键时进行录制,但它并不可靠。当用户点击向下箭头然后使用鼠标单击从下拉自动完成列表中进行选择时,该方法会中断。
您能否告诉我是否有一种可靠的方法来区分用户的“输入”键事件是尝试提交表单还是从下拉自动完成中选择?
谢谢
检查用户是否关注下拉菜单。
例如
if ($("#yourdropdown").is(":focus")) { return false; }
这是由 jquery jquery Focus完成的