我正在使用WordPress主题集成进行预订,但无法在iOS设备上使用。单击“提交”按钮后,它仅刷新当前页面。
关于如何解决此错误的任何想法?
我希望将代码添加到预订表单中,以确保正常工作
答案 0 :(得分:0)
尝试此代码。
$('.btn-send').on('click', function(e){
setTimeout(function() {
/* with this line, I pretend to disable both buttons in order to
prevent the user click them while the form is submitted */
$('.btn-modal').attr('disabled', "disabled");
/* show the gift image */
$('.waiting').fadeIn('fast');
}, 1);
});
希望它能为您服务