码迷,mamicode.com
首页 > 其他好文 > 详细

DOM_radio

时间:2017-07-09 13:52:09      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:round   nod   checked   else   document   问卷调查   head   年龄   onclick   

<html>
    <head>
        <style type="text/css">
        #info{
            display:none;
        }
        </style>
        <script type="text/javascript">
            function showContent(node){
                var odivNode = document.getElementById("info"); 
                with(odivNode.style){
                    if(node.value=="yes"){
                        display="block";
                    }else{
                        display="none";
                    }
                }
            }
        </script>
    </head>
    <body>
        <div>
            是否参与问卷调查?
            <input type="radio" name="wenjuan" value="yes" onclick="showContent(this)"/><input type="radio" name="wenjuan" value="nos" checked="checked" onclick="showContent(this)" /></div>
        <div id="info">
            姓名:<input type="text"/><br/>
            年龄:<input type="text"/><br/>
            住址:<input type="text"/><br/>
        </div>
        <div></div>
    </body>
</html>

 

DOM_radio

标签:round   nod   checked   else   document   问卷调查   head   年龄   onclick   

原文地址:http://www.cnblogs.com/wangyinxu/p/7141123.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!