码迷,mamicode.com
首页 > 其他好文 > 详细

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

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

标签:style   blog   http   color   java   io   for   ar   


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

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

标签:style   blog   http   color   java   io   for   ar   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!