如何輸入名稱價格1,price2,price3 ....在反應
let arrNum = 0;
function addInput() {
// click add input btn
arrNum += 1;
}
<input type="text" name={ "price" + arrNum } />
<button ... onClick= { this.addInput }></button>
每次用戶按一個按鈕,增加了輸入與arrNum + = 1
我想什麼,當我點擊3次點擊
<input type="text" name="price1" />
<input type="text" name="price2" />
<input type="text" name="price3" />
但我點擊
<input type="text" name="price3" />
<input type="text" name="price3" />
<input type="text" name="price3" />
對不起,我是壞的英語
你codesnippet不工作 –
這是一個總結。 –
你能告訴我們你到目前爲止所嘗試過的嗎?就像與上述場景匹配的反應組件 – duwalanise