源代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>编程字典</title> </head> <body> 输入你的名字: <input type="text" name="fname" id="fname" onblur="myFunction()"> <p>当你离开输入框时,一个函数被触发,转换输入文本为答谢.</p> <script> function myFunction() { var x = document.getElementById("fname"); x.value = x.value.toUpperCase(); } </script> </body> </html>
运行结果