HTML 参考手册
HTML onblur 事件属性
当用户离开输入域时进行验证
源代码:
点击运行 »
<!DOCTYPE html> <html> <meta charset="utf-8"> <head> <script> function upperCase() { var x = document.getElementById("fname").value document.getElementById("fname").value = x.toUpperCase() } </script> </head> <body> <p>输入您的姓名,然后移动光标/选项卡到输入框外:</p> 输入你的英文姓名(鼠标移开后小写会转换为大写): <input type="text" name="fname" id="fname" onblur="upperCase()"> </body> </html>
运行结果:
点击运行 »