国产chinesehdxxxx野外,国产av无码专区亚洲av琪琪,播放男人添女人下边视频,成人国产精品一区二区免费看,chinese丰满人妻videos

App下載
首頁(yè)javascriptreset_buttonJavascript Form - 如何從重置按鈕中刪除焦點(diǎn)

Javascript Form - 如何從重置按鈕中刪除焦點(diǎn)

我們想知道如何從重置按鈕中刪除焦點(diǎn)。


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