weixin_33743703 2018-10-05 10:59 采纳率: 0%
浏览 55

冲突Jquery-Ajax

I have a form made with multipage Gravity Form with Ajax enabled in Wordpress.

Since it is not possible to clone the fields that must have a unique ID, for me it is necessary to insert a field on each page that, if modified, sets the value equal to the other fields of the other pages.

The script works in multipage but not with the Ajax option enabled. Ajax is necessary for not completely reload the page but only the form because in the page I have third-party information in a iframe that does not need to be updated.

How can I resolve this conflict?

Thanks

<script type="text/javascript">
    jQuery(document).ready(function(){
        jQuery('#input_3_4').on('change',function(){
           var info = jQuery('#input_3_4').val();
           alert(info);
           $('#input_3_6').val(info);
           $('#input_3_7').val(info);
         });
        jQuery('#input_3_6').on('change',function(){
           var info = jQuery('#input_3_6').val();
           alert(info);
           $('#input_3_4').val(info);
           $('#input_3_7').val(info);
         });
        jQuery('#input_3_7').on('change',function(){
           var info = jQuery('#input_3_7').val();
           alert(info);
           $('#input_3_4').val(info);
           $('#input_3_6').val(info);
         });
    });
</script>

</div>
  • 写回答

0条回答 默认 最新

    报告相同问题?

    悬赏问题

    • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
    • ¥15 求daily translation(DT)偏差订正方法的代码
    • ¥15 js调用html页面需要隐藏某个按钮
    • ¥15 ads仿真结果在圆图上是怎么读数的
    • ¥20 Cotex M3的调试和程序执行方式是什么样的?
    • ¥20 java项目连接sqlserver时报ssl相关错误
    • ¥15 一道python难题3
    • ¥15 牛顿斯科特系数表表示
    • ¥15 arduino 步进电机
    • ¥20 程序进入HardFault_Handler