用js怎么动态生成一个文本框,有增加删除按钮,并可以取得文本框内的字符串传值给action
1个回答
展开全部
<form action="" method="get" id="form">
<div id="div"></div>
<input type="submit" value="提交表单" onclick="alert(document.getElementById('form').action);" />
</form>
<input type="button" onclick="document.getElementById('div').innerHTML='';" value="删除文本框" />
<input type="button" onclick="document.getElementById('div').innerHTML='<input type=\'text\' name=\'url\' id=\'url\' />';" value="增加文本框" />
<input type="button" onclick="document.getElementById('form').action=document.getElementById('url').value;" value="文本框的值给action" />
<div id="div"></div>
<input type="submit" value="提交表单" onclick="alert(document.getElementById('form').action);" />
</form>
<input type="button" onclick="document.getElementById('div').innerHTML='';" value="删除文本框" />
<input type="button" onclick="document.getElementById('div').innerHTML='<input type=\'text\' name=\'url\' id=\'url\' />';" value="增加文本框" />
<input type="button" onclick="document.getElementById('form').action=document.getElementById('url').value;" value="文本框的值给action" />
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询