使用jQuery自动检查单选按钮

时间:2018-01-05 17:26:07

标签: jquery

我有基本的HTML表单。

这是我的代码here

我想用React.createElement(component, props, ...children) *class="st13"编写一个小jQuery来自动检查单选按钮,其中包含电子邮件value="13"*root@root.com,如此图片。

Picture

我试过2个jQuery但不行。请帮我修理一下。谢谢你

anna@zzz.com

var emails = [
    'root@root.com',
  'anna@zzz.com'
];
$('input[type="radio"].st13').each(function() {
    var radio = $(this);
  var email = $(this).parent().prev('td').html();
  console.log($.inArray(email, emails));
  if ($.inArray(email, emails) != -1) {
    radio.prop('checked', true);
  }
});

0 个答案:

没有答案