jQuery,用按钮提交表单

前端之家收集整理的这篇文章主要介绍了jQuery,用按钮提交表单前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个表单,其中包含方法“POST”和action =“abc.PHP”和按钮类型< input type =“button”>
我有一个处理程序,当我点击该按钮我想向abc.PHP发送请求但没有发生任何动作正在被执行.我不想更改< input type =“button”> to< input type =“submit>.如何提交表格.这是代码
<form name= "form1" id ="form1" action ="abc.PHP" method="post">
<input type ="button" id="mybutton" value ="Add"> 
......
//All form Elements.
</form>

$(document).ready(function() {
    //Load all elements
});
$("#mybutton").click(function(e){
    alert(true);
    //$("#frmpohdr").submit();
});

上面的声明给出了错误,我知道我们需要提交按钮类型
这个方法.当我点击按钮时如何将表单提交给abc.PHP.我已经尝试了所有$.ajax方法

解决方法

你准备好把所有代码都准备好了吗?

另外,如果表单的id是表单1,您应该这样做:

$("#form1").submit();

要避免按钮默认的行为,您还应该在click的功能添加链接

e.preventDefault();

我还建议你看一下jQuery Form Plugin:http://jquery.malsup.com/form/

我希望我帮助:)

原文链接:https://www.f2er.com/jquery/175788.html

猜你在找的jQuery相关文章