<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>
728x90
댓글