1、radio标签
<input type="radio" >
$(document).ready(function(){
$('input[type=radio][name=zx_zx_blx]').change(function() {
if (this.value == 'AB005') {
console.log('AB005');
} else if (this.value == 'AB006') {
console.log('AB006');
} else if (this.value == 'AB007') {
});
</script>