我可以添加带按钮的文本框,但我不知道如何删除

时间:2014-11-16 13:38:51

标签: javascript html

    var emails = document.getElementById('emails'),
     add_link = document.createElement('a'),
     template = emails.getElementsByTagName('div'),
     current = template.length,
     max = 20;
     template = template[0];

     submit1.onclick = function () {
     var new_field = template.cloneNode(true);
     current += 1;
     new_field.innerHTML = new_field.innerHTML.replace(/1/g, current);
     emails.appendChild(new_field);
    if (current === max) {
        add_link.onclick = null;
        document.body.removeChild(add_link);
    }
    return false;
    };

document.body.appendChild(add_link);

从此链接复制 add multiple textbox using button click in javascript

如何创建删除按钮,请告诉我

1 个答案:

答案 0 :(得分:0)

尝试使用类似的东西。

elememt.parentNode.removeChild(element);

此问题已在本网站上提出并发布。看看这个链接。 Remove an Element with Javascript