• html radio


    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gbk">
    <script>
    <!--
        
    //选中2返回的也是1,找到第一个ID为该值的DOM,弹出 1
        function getVById(){alert(document.getElementById('test11').value);}
        
    function getVByName(){
            
    var tt = document.getElementsByName('test11');
            
    for (var iIndex = 0; iIndex < tt.length ; iIndex++ )
            {
                
    if(tt[iIndex].checked)
                {
                    alert(tt[iIndex].value);
                    
    break;
                }
            }
        };
    -->
    </script>
    </head>
    <body>
        <input type="radio" id="test11" name="test11" value="1" />测试1
        <input type="radio" id="test11" name="test11" value="2" />测试2
        <input type="button" value="BTN_ByID" onclick="getVById()" />
        <input type="button" value="BTN_ByName" onclick="getVByName()" />
    </body>
    <html>
  • 相关阅读:
    汇编实验四
    汇编实验三
    C语言常用标准库函数
    实验一
    NGUI的缓动
    unity之Hashtable ArrayList List
    有关Unity 的一些 笔记之
    有关Unity 的一些 笔记之场景
    有关Unity 的一些 笔记之prefab
    有关Unity 的一些 笔记之消息事件
  • 原文地址:https://www.cnblogs.com/abinxm/p/2219982.html
Copyright © 2020-2023  润新知