
入力フォーム毎コピーを作成する方法について… HTML 出力するためのテンプレートと出力するエリアを作成します。
1 2 3 4 5 6 7 8 9 10 11 12 |
<div id="displayArea"> <!-- ここに出力 --> </div> <button id="addButton">Add</button> <div id="templateForm" class="NotDisp"> <input type="text" name="templateTextbox"> <button name="testButton">TEST</button> <span class="dispInfo"></span> <button name="removeButton">REMOVE</button> </div> |
CSS テンプレート部分は非表示にしてお […]