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

App下載
首頁javascriptradiobuttonJavascript Form - 如何獲取單選按鈕類型屬性

Javascript Form - 如何獲取單選按鈕類型屬性

我們想知道如何獲取單選按鈕類型屬性。


<html>
<body>
    <form name="form1">
    <input type="radio" name=button1>Box 1
    <br><br>
    <input type="button" value="Get Button Type"
    onClick='console.log("The button type is: " + document.form1.button1.type)'>
    </form>
</body>
</html>