gpt4 book ai didi

javascript - 两次按键后触发事件

转载 作者:行者123 更新时间:2023-12-02 16:41:55 25 4
gpt4 key购买 nike

我只是想知道是否有办法在两次按键后触发事件,例如按两次 Enter 后。我尝试通过跟踪变量中的第一个事件,有更好的方法吗?

最佳答案

这是我的解决方案

代码:

var ct=[];
$('#txtSearch').on('keypress', function(e) {
if((e.which || e.keyCode) === 13){
ct[ct.length]=1;
var count=ct.length;
if(count%2==0){
alert("Enter pressed twice");
// Remove the alert and place your code here
}
}
});

每次按两次“Enter”键时都会显示一条警报。

这是一个工作 Demo

关于javascript - 两次按键后触发事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27416713/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com