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

克隆应用

时间:2019-01-25 15:07:50      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:nbsp   set   utf-8   innerhtml   fun   har   text   children   app   

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
        <title></title>
    </head>
    <body>
        <table border = "1" id="tab">
            <tr>
                <td> <input type="checkbox"/> </td>
                <td>姓名</td>
                <td>性别</td>
                <td>年龄</td>
            </tr>
        </table>
        <hr>
        姓名: <input type="text" id="uname" />
        性别: <input type="radio" name="sex" value="男"/>男
         <input type="radio" id="g" name="sex" value="女"/>女
        年龄: <input type="text" id="age" />
        <input type="button" value="保存" id="btn" />
    </body>
</html>
<script src="public.js"></script>
<script>
    $id("btn").onclick = function(){
        //克隆第一行
        //alert( $id("tab").children[0].children[0].tagName );
        var cloneTr = $id("tab").children[0].children[0].cloneNode(true);
        cloneTr.children[1].innerHTML = $id("uname").value;
        var sex = "男";//默认为男
        //判断女是否被选中
        if( $id("g").checked ){
            sex = "女";
        }
        cloneTr.children[2].innerHTML = sex;
        cloneTr.children[3].innerHTML = $id("age").value;
        
        $id("tab").appendChild( cloneTr );
    }
</script>

克隆应用

标签:nbsp   set   utf-8   innerhtml   fun   har   text   children   app   

原文地址:https://www.cnblogs.com/tis100204/p/10319253.html

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