admin管理员组

文章数量:1340548

I want to add some html data to the end of a div container. Currently, I do it with using innerHtml:

<script language="javascript">
var addid = 0;

function addInput(id){
    var docstyle = document.getElementById('addlist').style.display;
    if(docstyle == 'none')
        document.getElementById('addlist').style.display = '';

    addid++;

    var text = "<div id='additem_"+addid+"'><input type='text' size='100' value='' class='buckinput' name='items[]' style='padding:5px;' /> <a href='javascript:void(0);' onclick='addInput("+addid+")' id='addlink_"+addid+"'>add more</a></div>";

    document.getElementById('addlist').innerHTML += text;
}
</script>

<div id="addlist" class="alt1" style="padding:10px;">
    New list items are added to the bottom of the list.
    <br /><br />
</div>

The problem is that the value that was entered in the input fields is removed once another input field is added. How can I add content without and keep the entered data?

PS: I do not use jquery.

I want to add some html data to the end of a div container. Currently, I do it with using innerHtml:

<script language="javascript">
var addid = 0;

function addInput(id){
    var docstyle = document.getElementById('addlist').style.display;
    if(docstyle == 'none')
        document.getElementById('addlist').style.display = '';

    addid++;

    var text = "<div id='additem_"+addid+"'><input type='text' size='100' value='' class='buckinput' name='items[]' style='padding:5px;' /> <a href='javascript:void(0);' onclick='addInput("+addid+")' id='addlink_"+addid+"'>add more</a></div>";

    document.getElementById('addlist').innerHTML += text;
}
</script>

<div id="addlist" class="alt1" style="padding:10px;">
    New list items are added to the bottom of the list.
    <br /><br />
</div>

The problem is that the value that was entered in the input fields is removed once another input field is added. How can I add content without and keep the entered data?

PS: I do not use jquery.

Share Improve this question edited Feb 26, 2012 at 17:25 LoveAndCoding 7,9573 gold badges33 silver badges55 bronze badges asked Feb 26, 2012 at 16:57 reggiereggie 3,67414 gold badges64 silver badges102 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 7

innerHTML changes reset form elements. Instead use appendChild. See this demo http://jsfiddle/5sWA2/

function addInput(id) {

    var addList = document.getElementById('addlist');
    var docstyle = addList.style.display;
    if (docstyle == 'none') addList.style.display = '';

    addid++;

    var text = document.createElement('div');
    text.id = 'additem_' + addid;
    text.innerHTML = "<input type='text' value='' class='buckinput' name='items[]' style='padding:5px;' /> <a href='javascript:void(0);' onclick='addInput(" + addid + ")' id='addlink_" + addid + "'>add more</a>";

    addList.appendChild(text);
}

Take a look at this http://reference.sitepoint./javascript/Node/appendChild

So something like

document.getElementById('addlist').appendChild(text);

本文标签: domAdd input fields to div container (javascript)Stack Overflow