开发者社区> 问答> 正文

表单提交:.submit() is not a function

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>

</head>
<body>


<form id="form" method="post" action="/test2.php">
    <input type="text" name="tags[2]">
    <input type="text" name="tags[4]">
    <input type="text" name="hello">
    <input id="submit" type="button" value="submit">
</form>




<div>
    <?php print_r($_POST); ?>
</div>




<script src="/js/jquery-1.11.2.min.js"></script>


<script>
$('#submit').click(function(){
    
    $('#form').submit();
   
});
</script>


</body>
</html>

我将一个类型为type的button给了id值submit,网上搜了下,好像是这样做不行,不知道可以怎样解决呢?

展开
收起
小旋风柴进 2016-03-26 09:28:34 3415 0
1 条回答
写回答
取消 提交回答
  • <input type="text" name="tags[2]"> <input type="text" name="tags[4]"> <input type="text" name="hello"> 提交 <script src="/js/jquery-1.11.2.min.js"></script> <script> $('#submit').click(function(){ $('#form').submit(); }); </script>

    这样,再或者

    <input type="text" name="tags[2]"> <input type="text" name="tags[4]"> <input type="text" name="hello"> <button id="submit">提交</button>
    2019-07-17 19:15:19
    赞同 展开评论 打赏
问答分类:
问答标签:
问答地址:
问答排行榜
最热
最新

相关电子书

更多
低代码开发师(初级)实战教程 立即下载
冬季实战营第三期:MySQL数据库进阶实战 立即下载
阿里巴巴DevOps 最佳实践手册 立即下载