我需要我的表单自动点击"选择"用户有几秒钟后验证显示的数据。我能想到的最简单的方法就是让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>