2
我想添加更多的輸入使用JS按鈕,並不能算出來。使用JS添加更多的輸入
所以,我有這樣的代碼在我的HTML:
<div id="ingredients" class="ingredients">
<h2 class="tk-freight-sans-pro">Ingredients</h2>
<input type="text" placeholder="Ingredient">
<input type="text" placeholder="Ingredient">
<input type="text" placeholder="Ingredient">
<br>
<button class="button" onclick="addIngredient();">Add Ingredient</button>
</div>
而我的JS是在這裏:
function addIngredient() {
var list = document.getElementById("ingredients")
list.innerHTML += "<input type="text" placeholder="Ingredient">"
}
有誰知道發生了什麼事或什麼,我需要做什麼? 謝謝!
不客氣。 – Biduleohm
@ tns12 - 你應該接受這個答案是正確的:)(假設它解決了你問的問題,它應該) – jamis0n
我不能接受它.... – tns12