Во-первых, если у вас есть несколько текстовых областей и кнопок на странице, вы не можете использовать идентичные идентификаторы (#text
и #fname
) для ссылки на них.Вы должны либо дать им уникальные идентификаторы, либо использовать имена классов.Кроме того, вам нужно будет прослушивать события нажатия на соответствующей кнопке, а не только на первой.
Самый простой способ настроить это - создать текстовую область HTML и текстовый вывод A-Frame вта же функция:
function createTextArea(wrapper) {
const newTextArea = $(`
<div>
<textarea type="text" value="text" name="fname" class="inputText" cols="20" rows="3"></textarea>
<input class="sendButton" type="submit" value="Отправить" />
</div>
`);
wrapper.append(newTextArea);
const inputText = newTextArea.find(".inputText");
const sendButton = newTextArea.find(".sendButton");
var aframeWrapper = document.getElementById("text-container");
const index = aframeWrapper.children.length;
var position = new THREE.Vector3(index * -1.1, 0, 0);
var newText = document.createElement("a-entity");
newText.setAttribute("position", position);
newText.setAttribute("text", {
color: "white",
align: "center",
value: `output${index}`
});
aframeWrapper.appendChild(newText);
sendButton.click(e => {
e.preventDefault();
newText.setAttribute("text", "value", inputText.val());
});
}
$(document).ready(function() {
var wrapper = $(".container1");
var max_fields = 10;
var add_button = $(".add_form_field");
// create initial text area
createTextArea(wrapper);
var x = 1;
$(add_button).click(function(e) {
e.preventDefault();
if (x < max_fields) {
x++;
createTextArea(wrapper);
} else {
alert('You Reached the limits')
}
});
$(wrapper).on("click", ".delete", function(e) {
e.preventDefault();
$(this).parent('div').remove();
x--;
})
});
form {
position: absolute;
z-index: 1;
background: white;
padding: 1em;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://aframe.io/releases/0.8.2/aframe.min.js"></script>
<div class="container1">
<form name="myForm" href="" onsubmit="text1" height="440">
<div class="container1">
<button class="add_form_field">Add New Field
<span style="font-size:4px; font-weight:bold;">+</span></button>
<div><input type="text" name="mytext[]" /></div>
</div>
</form>
</div>
<a-scene background="color: black">
<a-entity id='text-container' position="0 1.6 -0.5"></a-entity>
<a-camera position="0 1.6 1"></a-camera>
</a-scene>