gpt4 book ai didi

javascript - 使用 prevent default 接管空格键

转载 作者:行者123 更新时间:2023-11-29 22:43:26 24 4
gpt4 key购买 nike

我有一些这样的代码来接管空格键的功能:

    $(document).keypress(function (e) { 
e.preventDefault();
if (e.which == 32) {
// func
}
});

不幸的是,这会破坏所有 key 的默认值。

这个:

    $(document).keypress(function (e) { 
if (e.which == 32) {
e.preventDefault();
// func
}
});

不幸的是无效。

我怎样才能防止只有空格键的默认值?

谢谢。

最佳答案

试试这个:

//e= e || window.event); you may need this statement to make sure IE doesn't keep the orginal event in motion
var code;
if (e.keyCode) {
code = e.keyCode;
} else if (e.which) {
code = e.which;
}
if (code == 32) {
if (e.stopPropagation) {
e.stopPropagation();
e.preventDefault();
}
return false;
}

关于javascript - 使用 prevent default 接管空格键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/940180/

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