使用 JavaScript 在 div 中添加/删除 HTML

IT技术 javascript html innerhtml
2021-01-27 07:01:30

我希望能够将多行添加到 div 并删除它们。我在页面顶部有一个“+”按钮,用于添加内容。然后在每一行的右侧有一个“-”按钮,用于删除该行。我就是想不通这个例子中的 javascript 代码。

这是我的基本 HTML 结构:

<input type="button" value="+" onclick="addRow()">

<div id="content">

</div>

这是我想在内容 div 中添加的内容:

<input type="text" name="name" value="" />
<input type="text" name="value" value="" />
<label><input type="checkbox" name="check" value="1" />Checked?</label>
<input type="button" value="-" onclick="removeRow()">
6个回答

你可以做这样的事情。

function addRow() {
  const div = document.createElement('div');

  div.className = 'row';

  div.innerHTML = `
    <input type="text" name="name" value="" />
    <input type="text" name="value" value="" />
    <label> 
      <input type="checkbox" name="check" value="1" /> Checked? 
    </label>
    <input type="button" value="-" onclick="removeRow(this)" />
  `;

  document.getElementById('content').appendChild(div);
}

function removeRow(input) {
  document.getElementById('content').removeChild(input.parentNode);
}
哦,明白了。您必须从父项中删除子项,因此更改input.parentNodeinput.parentNode.parentNodein removeRow()提醒一下,如果您向删除按钮添加更多父项,则必须removeRow像我刚才那样进行相应更改
2021-03-16 07:01:30
哦,原来如此。只是在尝试您的代码时出错。它现在正在工作。干杯!
2021-03-25 07:01:30
这支持多行。
2021-03-30 07:01:30
我希望能够添加多行。我的问题有点不清楚,所以我编辑了它。
2021-04-07 07:01:30
虽然,将输入包装在 div 中时它不起作用 <div class="options_part"></div>
2021-04-08 07:01:30

最令我惊讶的是,我向您展示了一个我从未使用过的 DOM 方法,之前我在谷歌搜索这个问题并insertAdjacentHTMLMDN找到了古老的方法(请参阅CanIUse?insertAdjacentHTML以获得一个非常绿色的兼容性表)。

所以使用它你会写

function addRow () {
  document.querySelector('#content').insertAdjacentHTML(
    'afterbegin',
    `<div class="row">
      <input type="text" name="name" value="" />
      <input type="text" name="value" value="" />
      <label><input type="checkbox" name="check" value="1" />Checked?</label>
      <input type="button" value="-" onclick="removeRow(this)">
    </div>`      
  )
}

function removeRow (input) {
  input.parentNode.remove()
}
<input type="button" value="+" onclick="addRow()">

<div id="content">
</div>

另一种解决方案是使用getDocumentByIdinsertAdjacentHTML

代码:

function addRow() {

 const  div = document.getElementById('content');

 div.insertAdjacentHTML('afterbegin', 'PUT_HTML_HERE');

}

在这里查看更多详细信息: Element.insertAdjacentHTML()

您可以使用此函数向 DOM 元素添加子元素。

function addElement(parentId, elementTag, elementId, html) 

 {


// Adds an element to the document


    var p = document.getElementById(parentId);
    var newElement = document.createElement(elementTag);
    newElement.setAttribute('id', elementId);
    newElement.innerHTML = html;
    p.appendChild(newElement);
}



function removeElement(elementId) 

{

    // Removes an element from the document
    var element = document.getElementById(elementId);
    element.parentNode.removeChild(element);
}

我知道这花了太长时间,这意味着你可以写得更简短一些。

    function addRow() {
        var inputName, inputValue, label, checkBox, checked, inputDecrease, content, Ptag;
        // div
        content = document.getElementById('content');
        // P tag
        Ptag = document.createElement('p');
        // first input
        inputName = document.createElement('input');
        inputName.type = 'text';
        inputName.name = 'name';
        // Second input
        inputValue = document.createElement('input');
        inputValue.type = 'text';
        inputValue.name = 'Value';
        // Label
        label = document.createElement('label');
        // checkBox
        checkBox = document.createElement('input');
        checkBox.type = 'checkbox';
        checkBox.name = 'check';
        checkBox.value = '1';
        // Checked?
        checked = document.createTextNode('Checked?');
        // inputDecrease
        inputDecrease = document.createElement('input');
        inputDecrease.type = 'button';
        inputDecrease.value = '-';
        inputDecrease.setAttribute('onclick', 'removeRow(this)')
        // Put in each other
        label.appendChild(checkBox);
        label.appendChild(checked);
        Ptag.appendChild(inputName);
        Ptag.appendChild(inputValue);
        Ptag.appendChild(label);
        Ptag.appendChild(inputDecrease);
        content.appendChild(Ptag);
    }

    function removeRow(input) {
        input.parentNode.remove()
    }
* {
    margin: 3px 5px;
}
<input type="button" value="+" onclick="addRow()">

<div id="content">

</div>