首页javascriptreset_buttonJavascript Form - 如何句柄焦点获得重置按钮的事件

Javascript Form - 如何句柄焦点获得重置按钮的事件

我们想知道如何句柄焦点获得重置按钮的事件。


<html>
<body>
    <script language="JavaScript">
    function setMsg(){
         console.log("Focus is set on the reset button.");
    }
    </script>
    <form name="form1">
        Click the reset button.
        <br><br>
        Enter Name: <input type="text" Name="name" Size=15>
        <br>
        Enter Phone: <input type="text" Name="phone" Size=10>
        <br><br>
        <input type="reset" name=resetbutton value=Reset onFocus='setMsg()'>
        <br>
    </form>
</body>
</html>