首页 > 其他 > 详细

DOM之练习2

时间:2019-05-07 20:41:55      阅读:139      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<!--
需求
    1.点击“添加附件”按钮,出现一个添加附件的input
    2.点击“删除”按钮,删除一行附件
-->
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <script>
        function addFile(){
            var father = document.getElementById("content");
            var filer = document.createElement("input");
            filer.type="file";
            var myspan = document.getElementById("myspan");
            var buttoner = document.createElement("input");
            buttoner.type="button";
            buttoner.value="删除";
            buttoner.onclick=function(){
                removeele(this);
            }
            father.insertBefore(filer,myspan);
            father.insertBefore(buttoner,myspan);
            var br = document.createElement("br");
            father.insertBefore(br,myspan);

        }
        function removeele(item){
            var father = document.getElementById("content");
            father.removeChild(item.previousSibling);
            father.removeChild(item.nextSibling);
            father.removeChild(item);

        }
    </script>
</head>
<body>

<input type="button" value="添加附件" onclick="addFile()"/>

<hr/>
<div id="content">
    <input type="file" /><input type="button" value="删除" onclick="removeele(this)"/><br/>
    <input type="file" /><input type="button" value="删除" onclick="removeele(this)"/><br/>
    <span id="myspan">...</span>
</div>
</body>
</html>

  

DOM之练习2

原文:https://www.cnblogs.com/heviny/p/10827783.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!