[新着] Webテンプレートを仮オープンしました
<script type="text/javascript">
window.rows = 1;
function plus()
{
var table = document.getElementById("table").getElementsByTagName("tbody")[0];
var row = document.getElementById("row1");
row = row.cloneNode(true);
row.id = "row" + (++window.rows);
table.appendChild(row);
}
function minus()
{
if( window.rows > 1 ) {
var table = document.getElementById("table").getElementsByTagName("tbody")[0];
var row = document.getElementById("row" + window.rows--);
table.removeChild(row);
}
}
</script>
<form>
<table border="1" id="table">
<tr id="row1">
<td>
<input type="text" name="col1-1">
</td>
<td>
<input type="text" name="col2-1">
</td>
</tr>
</table>
<input type="button" value=" ▼ " onclick="plus()">
<input type="button" value=" ▲ " onclick="minus()">
</form>