我需要添加一個新表單來存儲每次點擊該按鈕時的圖形信息。PHP - 當單擊按鈕時使用for循環將Form Div增加1
每當我點擊按鈕,我應該讓div增加1,這樣新的信息就可以用一個唯一的ID存儲在數據庫中。
.jumbotron{
width:1000px;
height:100px;
background-color:lightblue;
}
<form action = "" method = "post">
<input type = "submit" name = "submit" value = "Add a new form">
</form>
<div class = "jumbotron">
First Name: <input type="text" name="firstname"><br>
Last Name: <input type="text" name="lastname"><br>
</div>
參考這裏:https://jsfiddle.net/rk6eyym6/
你的問題到底是什麼? – EluciusFTW
單擊按鈕時,我無法使用for循環做1的div複製。 – DivyaK
好,向我們展示在按鈕提交時執行的代碼。 – EluciusFTW