阅读这篇文章后: 使用JavaScript来添加表单字段..但是下面,不是在一旁? 我所做的工作按钮! 但我不知道如何接收输出。 这是我输入的内容。
var counter = 0;
function addNew() {
// Get the main Div in which all the other divs will be added
var mainContainer = document.getElementById('mainContainer');
// Create a new div for holding text and button input elements
var newDiv = document.createElement('div');
// Create a new text input
var newText = document.createElement('input');
newText.type = "input";
newText.maxlength = "50";
newText.maxlimit = "50";
newText.size = "60";
newText.value = counter;
// Create a new button input
var newDelButton = document.createElement('input');
newDelButton.type = "button";
newDelButton.value = "Delete";
// Append new text input to the newDiv
newDiv.appendChild(newText);
// Append new button input to the newDiv
newDiv.appendChild(newDelButton);
// Append newDiv input to the mainContainer div
mainContainer.appendChild(newDiv);
counter++;
// Add a handler to button for deleting the newDiv from the mainContainer
newDelButton.onclick = function() {
mainContainer.removeChild(newDiv);
}
}
</script>
有了这个形式:
<input type="button" size="3" cols="30" value="Add" onClick="addNew()">
因此,将新的字段名称是什么? 我不明白足够的编码要弄清楚什么我告诉它来。 好东西,还有其他的聪明人在那里给我依靠!
感谢您的任何答案。