W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <body> 请输入您的姓名:<input type="text" id="fname" onfocusout="myFunction()"> <p>当您离开输入字段时,会触发一个将输入文本转换为大写的函数。</p> <script> function myFunction() { var x = document.getElementById("fname"); x.value = x.value.toUpperCase(); } </script> </body> </html>