gpt4 book ai didi

javascript - 是否有一个程序或脚本可以让一个键输入另一个键?

转载 作者:行者123 更新时间:2023-12-03 12:06:13 24 4
gpt4 key购买 nike

我需要一个能够拥有它的程序,因此当我输入 z 时,它会输入 s 。有这样的吗?或者我可以自己编写任何类型的脚本来使其工作?我有一台 Windows 7 操作系统电脑。

最佳答案

只需获取键值并将其替换为您想要替换的值即可。

FIDDLE 生成 Z 或 z » S 或 s: http://jsfiddle.net/remix1201/rz6ba0jt/2/

HTML:

<input id="target" />

JS:

$( "#target" ).keypress(function(event) {

var replaceWithKey1 = "S";
var replaceWithKey2 = "s";

if (event.which == 90){
event.preventDefault();
$(this).val($(this).val() + replaceWithKey1);
}
else if (event.which == 122){
event.preventDefault();
$(this).val($(this).val() + replaceWithKey2);
}

});

FIDDLE 生成 S 或 s » Z 或 z: http://jsfiddle.net/remix1201/rz6ba0jt/1/

HTML:

<input id="target" />

JS:

$( "#target" ).keypress(function(event) {

var replaceWithKey1 = "Z";
var replaceWithKey2 = "z";

if (event.which == 83){
event.preventDefault();
$(this).val($(this).val() + replaceWithKey1);
}
else if (event.which == 115){
event.preventDefault();
$(this).val($(this).val() + replaceWithKey2);
}

});

关于javascript - 是否有一个程序或脚本可以让一个键输入另一个键?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25183822/

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