提交表格而不点击提交

时间:2015-04-24 19:46:20

标签: javascript

我需要我的表单自动点击"选择"用户有几秒钟后验证显示的数据。我能想到的最简单的方法就是让Javascript在几秒钟之后选择提交选项但是我使用JavaScript看到的大部分回复都只是刷新了页面...是否有可能实际使用Javascript选择"提交"几秒后按钮?这是我的代码:

    <div class="clear"></div>
    <hr>
    <p class="full-width">
        <span class="buttons pull-left">
            <input type="button" name="cancel" class="close"  value="<?php
            echo __('Cancel'); ?>">
        </span>
        <span class="buttons pull-right">
            <input type="submit" value="<?php echo __('Continue'); ?>">
        </span>
     </p>
</form>
</div>

1 个答案:

答案 0 :(得分:0)

可以使用setTimeout

在设定的时间间隔后进行提交

这是一个工作小提琴http://jsfiddle.net/a37240dz/