gpt4 book ai didi

javascript - 在 JS 文本区域中将大小写更改为小写

转载 作者:行者123 更新时间:2023-11-30 10:46:19 25 4
gpt4 key购买 nike

如何将文本框/文本区域中字符的大小写更改为小写?

<html>
<head>
<title>Page Title</title>
<script>
function f2(string)
{
string=string.toUpperCase();
alert(string);
}
</script>
</head>
<body>
<p>Here are my text entry objects:</p>
<form>
<p>
Change the scripting (still using one function) so that the text from the alert is shown in uppercase from the textbox but lowercase from the textarea:<br>
<textarea onchange='f2(this.value);'></textarea>
</p>
</form>
</body>

最佳答案

你试过吗;

function f2(textarea)
{
string = textarea.value;
alert(string);
string = string.toLowerCase();

textarea.value = string;
}

随着onChange的修改为;

<textarea onchange='f2(this);'></textarea>

关于javascript - 在 JS 文本区域中将大小写更改为小写,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8115817/

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