【问题标题】:How To Fix WordPress Cross Browser Compatibility?如何修复 WordPress 跨浏览器兼容性?
【发布时间】:2020-11-30 12:10:05
【问题描述】:

我正在为预订表单使用 WordPress 主题集成,但它不适用于 iOS 设备。单击提交按钮时,它只是刷新当前页面。

关于如何修复此错误的任何想法?

我希望将代码添加到预订表格中以正常工作

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

【问题讨论】:

  • 您正在使用任何表单插件?
  • nope 它的主题内置表单

标签: javascript php jquery wordpress html


【解决方案1】:

试试这个代码。

$('.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);

});

希望它对你有用

【讨论】:

    猜你喜欢
    • 2010-10-26
    • 2012-08-09
    • 2011-06-07
    • 2011-06-18
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多