如何在添加新的文本框onclick的同时删除旧的文本框并保存用户输入?我希望用户能够添加一个新页面,而不显示旧页面。

<html>
  <head>
    <script>
	var boxCount=1;
	var boxName=0;
	function newBox(){
		var input=document.createElement("input");
			input.type="text"
			input.name="fname_"+boxCount;
			input.placeholder="fname_"+boxCount;
			document.getElementById('box').appendChild(input);
		var new_line=document.createElement("br");document.getElementById('box').appendChild(new_line);
		var new_line2=document.createElement("br");document.getElementById('box').appendChild(new_line2);

			boxCount++;
	}
</script>
    <head>
      <body>
		<button type="button" onclick="newBox()">Add Property</button><br/>
		<form action="#" method="post">
			<br/><span id="box"></span><br/><br/>
			<input type="submit" value="Submit">
		</form>
	</body>
</html>

最佳答案

您可以尝试将每个先前输入的类型设置为隐藏。
见下文:



var input,
    inputCount = 0;

function newInput () {
  if (input !== undefined) {
    input.type = "hidden";
  }
  inputCount++;

  input = document.createElement("input");
  input.type = "text";
  input.name = input.placeholder = "fname" + inputCount;
  document.getElementById("box").appendChild(input);
}

<button type="button" onclick="newInput()">Add Property</button><br/>
<form action="#" method="post">
  <br/><span id="box"></span><br/><br/>
  <input type="submit" value="Submit">
</form>

10-05 22:17