首页 > 其他 > 详细

表单提交(四)——不能提交表单

时间:2014-08-12 16:39:34      阅读:304      评论:0      收藏:0      [点我收藏+]

Forms and their child elements should not use input names or ids that conflict with properties of a form, such as submit, length, or method. Name conflicts can cause confusing failures. For a complete list of rules and to check your markup for these problems, see DOMLint.——jquery API

     表单和其子元素不能用一个表单的属性作为name或id的名称,如submit, length, or method,会产生冲突。从而导致表单提交失败。Chorme中报错:Uncaught TypeError: object is not a function

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <script type="text/javascript">
        function formSubmit()
        {

            document.getElementById("myForm").submit();


        }
    </script>
</head>

<body>

<form id="myForm" action="http://www.baidu.com" method="get" >
    姓名:<input type="text" name="name" size="20"><br />

    <input type="button" onclick="formSubmit()" name="submit" id="submit" value="提交">
</form>
</body>

</html>

 用type="submit"方法不影响。

表单提交(四)——不能提交表单,布布扣,bubuko.com

表单提交(四)——不能提交表单

原文:http://www.cnblogs.com/xjinza/p/3907273.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!