2

我正在使用此方法将默认值传递给 Contact Form 7 选择字段。它工作正常,但我真的需要它与无线电场一起工作。

我尝试将 jquery 更改为:

jQuery(document).ready(function(){
        // get contents of hidden input; store in variable
        var val = jQuery("span.hiddendefault input").val();
        // set the "selected" attribute for option with value equal to variable
        jQuery('radio#style-one option[value=' + val + ']').attr('checked', 'checked');
});

和联系表 7:

[radio radio-525 id:style-one class:test-class "one" "two" "three" "four"] 

但未按要求检查单选按钮。请问有人有什么想法吗?

[编辑] 表单生成的 html:

<span class="wpcf7-form-control-wrap radio-525">
  <span id="style-one" class="wpcf7-form-control  wpcf7-radio test-class">
    <span class="wpcf7-list-item">
      <input type="radio" name="radio-525" value="one" />
      <span class="wpcf7-list-item-label">one</span>
    </span>
    <span class="wpcf7-list-item">
      <input type="radio" name="radio-525" value="two" />
      <span class="wpcf7-list-item-label">two</span>
    </span>
    <span class="wpcf7-list-item">
      <input type="radio" name="radio-525" value="three" />
      <span class="wpcf7-list-item-label">three</span>
    </span>
    <span class="wpcf7-list-item">
      <input type="radio" name="radio-525" value="four" />&nbsp;
      <span class="wpcf7-list-item-label">four</span>
    </span>
  </span>
</span>
<span class="wpcf7-form-control-wrap hiddendefault">
  <input type="hidden" name="hiddendefault" value="three" />
</span>
4

2 回答 2

2

您只需为所选值“option2”添加默认值:2

[radio subcription default:2 "option1" "option2" "option3"]
于 2015-07-30T11:28:35.863 回答
0

Contact Form 7 生成的 HTML 不使用单选或选项标签。它input type="radio"在 a 内使用span。结果,您的选择器不匹配任何元素。它应该是

'span#style-one input[value=' + val + ']'

在上下文中

jQuery(document).ready(function(){
    // get contents of hidden input; store in variable
    var val = jQuery("span.hiddendefault input").val();
    // set the "selected" attribute for option with value equal to variable
    jQuery('span#style-one input[value=' + val + ']').attr('checked', 'checked');
});
于 2012-11-30T01:08:15.120 回答