如何修复WordPress跨浏览器兼容性?

时间:2019-01-23 07:14:54

标签: javascript php jquery wordpress html5

我正在使用WordPress主题集成进行预订,但无法在iOS设备上使用。单击“提交”按钮后,它仅刷新当前页面。

关于如何解决此错误的任何想法?

我希望将代码添加到预订表单中,以确保正常工作

访问“ http://test.platinumcabs.com

1 个答案:

答案 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);

});

希望它能为您服务