JavaScript遊標失焦事件(onblur)
遊標失焦事件(onblur)
#onblur事件與onfocus是相對事件,當遊標離開目前獲得聚焦物件的時候,觸發onblur事件,同時執行被呼叫的程式。
下面例子,當遊標離開時,讓使用者確認是否已經輸入訊息:
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <script> function fun(){ window.alert("请确认这是您的真实姓名") } </script> </head> <body> <form> 姓名: <input name="username" type="text" value="请输入姓名" onblur="fun()" > </form> </body> </html>