我有基本的HTML表单。
这是我的代码here
我想用React.createElement(component, props, ...children)
*class="st13"
编写一个小jQuery来自动检查单选按钮,其中包含电子邮件value="13"*
和root@root.com
,如此图片。
我试过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);
}
});