この値 (「+」と「-」) を持つ 2 つのボタンを作成しました。「+」をクリックすると、テキストとコンボ ボックスが作成されます。「-」ボタンでそれらを削除する方法を知りたいですか? (JavaScript のみ)
コードは次のとおりです。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>create and delete</title>
<script type="text/javascript">
/*this function creates text box and combo box*/
function cre()
{var t=document.createElement('select');
var form=document.getElementById('theForm');
var label = document.createElement('label');
var textbox = document.createElement('input');
form.appendChild(t);
form.appendChild(textbox);}
function del()
/*{delete t,form,label,textbox;}*/
</script>
</head>
<body>
<form id='theForm'>
<input type="button" value="+" onclick="cre()" />
<input type="button" value="-" onclick="del()" />
</form>
</body>
</html>