我有一个表单,其中包含方法“POST”和action =“abc.PHP”和按钮类型< input type =“button”>
我有一个处理程序,当我点击该按钮我想向abc.PHP发送请求但没有发生任何动作正在被执行.我不想更改< input type =“button”> to< input type =“submit>.如何提交表格.这是代码
我有一个处理程序,当我点击该按钮我想向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方法