gpt4 book ai didi

jquery - 使用 jQuery 实时替换输入

转载 作者:行者123 更新时间:2023-12-01 01:15:50 25 4
gpt4 key购买 nike

我对这个脚本有疑问,我想用特定的字母实时替换输入字段中输入的任何内容,并在字段中使用 Hello World

 <input id="inputID" type="text" value="" maxlength="11"/>
$('#inputID').keyup(function(e){
var cv=["h","e","l","l","o"," ","w","o","r","l","d",""];

var i=$('#inputID').val();

for (j=0;j<11;j++){

this.value = this.value.replace(i[j],cv[j]);

}

});

当我写得很慢时,这个脚本很有效,但当我写得很快时,这个脚本就不行了。感谢您的帮助

最佳答案

试试这个方法:

$('#inputID').keyup(function(e){
var cv = 'hello world';
this.value = cv.substr(0, this.value.length);
});

See the working demo.

关于jquery - 使用 jQuery 实时替换输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16641098/

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