gpt4 book ai didi

javascript - 将输入更改为大写

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

JS:

<script type="text/css">
$(function() {
$('#upper').keyup(function() {
this.value = this.value.toUpperCase();
});
});
</script>

HTML

<div id="search">
<input type="radio" name="table" class="table" value="professor" tabindex="1" /> Professor
<input type="radio" name="table" class="table" value="department" tabindex="2" /> Department
<input type="radio" name="table" id="upper" class="table" value="course" tabindex="3" /> Course
<input type="text" name="search" class="keywords" value="Select an option..." onclick="this.value='';" onfocus="this.select()" onblur="this.value=!this.value?':this.value;" tabindex="4" />
<div id="content"> </div>
</div>

为什么还是不行??只是试图从 JS 调用 div“.keywords”。

最佳答案

我认为最优雅的方式是不使用任何 javascript 而使用 css。您可以使用 text-transform: uppercase (这只是为了想法而内联):

<input id="yourid" style="text-transform: uppercase" type="text" />

编辑:

因此,在您的情况下,如果您希望关键字为大写更改:关键字:$(".keywords").val(),$(".keywords").val().toUpperCase(),

关于javascript - 将输入更改为大写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5757101/

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