添加的脚本不起作用

时间:2016-05-07 16:31:46

标签: javascript jquery wordpress jotform

我在Jotform表单中添加了一个脚本问题。 包含表单和脚本的页面位于:http://kucanskiposlovi.com/narucite-dolazak/

我在源代码中添加了一个小脚本,当点击左侧的单选按钮时,会检查paypal复选框(右侧)。脚本工作,单击单选按钮时填充复选框,但由于某种原因,paypal的总计算不起作用。它表示0欧元,但是当我取消选中并直接点击复选框时,总数就可以了。

您可以在此处查看Jotform代码:https://form.jotformeu.com/61203206094343

我添加的脚本是:

jQuery(document).ready(function() {
  function subscribe() {
    jQuery('input[type="radio"]').click(function() {
      var trimj = document.getElementById("input_52_0");
      var sestmj = document.getElementById("input_52_1");
      var jednokratno = document.getElementById("input_52_2");
      if (trimj.checked == true) {
        //check 3 mjeseca box, uncheck all other boxes
        jQuery("#input_63_1020").prop("checked", true);
        jQuery("#input_63_1021").prop("checked", false);
        jQuery("#input_63_1022").prop("checked", false);
        jQuery("#input_63_1023").prop("checked", false);
        jQuery("#input_63_1024").prop("checked", false);
        jQuery("#input_63_1025").prop("checked", false);
        jQuery("#input_63_1026").prop("checked", false);
        jQuery("#input_63_1027").prop("checked", false);
        jQuery("#input_63_1028").prop("checked", false);
        jQuery("#input_63_1029").prop("checked", false);
        jQuery("#input_63_1030").prop("checked", false);
      } else if (sestmj.checked == true) {
        //check 6 mjeseci box, uncheck all other boxes
        jQuery("#input_63_1020").prop("checked", false);
        jQuery("#input_63_1021").prop("checked", true);
        jQuery("#input_63_1022").prop("checked", false);
        jQuery("#input_63_1023").prop("checked", false);
        jQuery("#input_63_1024").prop("checked", false);
        jQuery("#input_63_1025").prop("checked", false);
        jQuery("#input_63_1026").prop("checked", false);
        jQuery("#input_63_1027").prop("checked", false);
        jQuery("#input_63_1028").prop("checked", false);
        jQuery("#input_63_1029").prop("checked", false);
        jQuery("#input_63_1030").prop("checked", false);
      }
    });
  }
  subscribe();
});

0 个答案:

没有答案