国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁javascriptradiobuttonJavascript Form - 如何處理焦點丟失的事件從單選按鈕

Javascript Form - 如何處理焦點丟失的事件從單選按鈕

我們想知道如何處理焦點丟失的事件從單選按鈕。


<html>
<body>
    <script language="JavaScript">
    function showChange(){
         document.form1.text1.value = "Focus removed from Radio Button";
    }
    </script>
    <form name="form1">
        Click the radio button first, then click in the text area.
        <br><br>
        <input type="radio" name=button1 onBlur='showChange()'>Box 1
        <br>
        Click the text box
        <input type="text" name="text1" size=40>
        <br>
    </form>
</body>
</html>