用户在进行提交操作的时候,我需要知道用户选中了那个单选框,我该如何去写?
$(this).checked==true和$(this).attr("checked")好像都判断不了
document.getElementById('submit').addEventListener('tap', function() {
$("input[type='radio']").each(function() {
console.log($(this).checked==true);
console.log($(this).attr("checked"));
if($(this).attr("checked")) {
var id = $(this).attr("id");
console.log(id);
}
});
});
0 个回复