2009. 1. 20. 10:13
<script type="text/javascript">
function add(){
var oText = document.createElement("input");
oText.setAttribute("type", "text");
oText.setAttribute("id", "txt");
document.myform.appendChild(oText);
}
function del(){
var oText = document.getElementById("txt");
oText.parentNode.removeChild(oText);
}
</script>