判断单选框是否选中:
if ($(this).is(':checked')) { console.log('选中了'); }
或者:
if (this).prop('checked')==true) { console.log('选中了,推荐用这个方法哦'); }
获取单选框选中的值:$("input[name=type]:checked").val()
判断单选框是否选中:
if ($(this).is(':checked')) { console.log('选中了'); }
或者:
if (this).prop('checked')==true) { console.log('选中了,推荐用这个方法哦'); }
获取单选框选中的值:$("input[name=type]:checked").val()