duan051347 2016-08-23 12:47
浏览 261

form.submit方法在jQuery中不起作用

Form

 <form method="POST" name="form" id="form">
        <p>
            <input type="radio" name="ans1" value="A"> <br>
            <input type="radio" name="ans2" value="B"> <br>
            <input type="radio" name="ans3" value="C"> <br>
            <input type="radio" name="ans4" value="D"> <br>
            <input type="submit" name="send">  
        </p>
     </form>   

jQuery

$(document).ready(function()
{
    if(endTime <= time )
    {
        //alert('123'); //when fire condition then alert is working ;
        $("form").submit();
    }
});

Problem

When i click on send button then form submit by php
but if form does not submit i want to submit form automatic by jQuery , but form.submit is not working

When jQuery 'if condition' fire then page reload and hang page but form did not submit

  • 写回答

2条回答 默认 最新

  • dongming4994 2016-08-23 12:49
    关注

    Because when you call $( "#form" ).submit(); it triggers the external submit handler which prevents the default action, instead use

    $( "#form" )[0].submit();  
    

    or

    $form.submit();//declare `$form as a local variable by using var $form = this;
    

    When you call the dom element's submit method programatically, it won't trigger the submit handlers attached to the element

    评论

报告相同问题?

悬赏问题

  • ¥15 为什么apriori的运行时间会比fp growth的运行时间短呢
  • ¥15 帮我解决一下膳食平衡的线性规划模型的数据实例
  • ¥40 万年历缺少农历,需要和阳历同时显示
  • ¥250 雷电模拟器内存穿透、寻基址和特征码的教学
  • ¥200 比特币ord程序wallet_constructor.rs文件支持一次性铸造1000个代币,并将它们分配到40个UTXO上(每个UTXO上分配25个代币),并设置找零地址
  • ¥15 关于Java的学习问题
  • ¥15 如何使用chatgpt完成文本分类任务?
  • ¥15 已知速度v关于位置s的等式,怎么转化为已知位置求速度v的等式
  • ¥15 我有个餐饮系统,用wampserver把环境配置好了,但是后端的网页却进去,是为什么,能不能帮远程一下?
  • ¥15 R运行没有名称为"species"的插槽对于此对象类"SDMmodelCV"