Jquery“或”陈述?
我希望如果有人点击文本框的外侧(.focusout 或 .blur),文本框就会消失,但我也希望在按下 Esc(键 27)时能够执行相同的功能。我不知道如何在不破坏我的整个脚本的情况下让两者都得到认可。
I would like for a text box to disappear if a person clicks out side of it (.focusout or .blur) but I also want to be able do the same function if Esc is pressed (key 27). I am not sure how to get both to be recognized without ruining my entire script.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以将两个事件绑定到同一个函数
,然后它只是决策逻辑来查看是否按下了某个键或其他什么。
You can bind both events to the same function with
And then it's just decision logic to see if it was a key that was pressed or whatnot.
像这样的事情怎么样:
How about something like this:
我将创建一个绑定到文本框的自定义事件:
I would create a custom event bound to the text box: