简单教程
提交运行
代码编辑器:
<script> function displayResult() { var x=document.getElementById("fname"); x.value=x.value.toUpperCase(); } </script> <p>在输入域松开按键时触发函数。该函数将小写字母转为大写字母</p> 输入你的名字: <input type="text" id="fname" onkeyup="displayResult()">
运行结果: