gpt4 book ai didi

javascript - 如何使用 'keyup' 事件将小写字符更改为大写字符?

转载 作者:IT王子 更新时间:2023-10-29 02:58:42 25 4
gpt4 key购买 nike

我的目标是使用 jQuery 事件 .keyup()将输入的小写字符转换为大写字符。

我怎样才能做到这一点?

最佳答案

普通 ol' javascript:

var input = document.getElementById('inputID');

input.onkeyup = function(){
this.value = this.value.toUpperCase();
}

带有 jQ​​uery 的 Javascript:

$('#inputID').keyup(function(){
this.value = this.value.toUpperCase();
});

关于javascript - 如何使用 'keyup' 事件将小写字符更改为大写字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7717099/

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