在JS文本区域中将大小写更改为小写 [英] Change case to lowercase in JS text area

查看:146
本文介绍了在JS文本区域中将大小写更改为小写的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何将textbox / textarea中字符的大小写更改为小写onchange?

How do I change the case of a character in a textbox/textarea to lowercase onchange?

<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修改为;

With the modification to the onChange as;

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

这篇关于在JS文本区域中将大小写更改为小写的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆