20 document操作表单form
Posted scorpicat
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了20 document操作表单form相关的知识,希望对你有一定的参考价值。
就两点:
1.属性elements
获取form表单下的所有与输入有关的节点如input selete等
2.submit() /reset() 提交表单和清空表单
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <script type="text/javascript"> function doIt(){ var formObj = document.getElementById("fm"); //下面演示form对象的方法 //提交表单 //formObj.submit(); //获取关于输入有关的所有节点 var eles = formObj.elements; alert(eles.length); //修改action formObj.action="xxx.com"; //修改method formObj.method="get"; } </script> <input type="button" value="强大的功能" onclick="doIt()"> <form action="//www.baidu.com/s" method="get" id="fm"> <input type="text" name="wd" id="" value="" /><br> <input type="submit" value="提交"/> </form> </body> </html>
以上是关于20 document操作表单form的主要内容,如果未能解决你的问题,请参考以下文章
form表单怎么提交不了啊,总是报document.ticketform为空或不是对象
maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段