> 娱乐
adio选中事件怎么绑定(adio被选中事件)
导语:radio选中事件
<input type="radio" name="type" value="1" checked="checked"/>联动<input type="radio" name="type" value="2" />提示<input type="radio" name="type" value="3"/>过程页
点击事件
$('input:radio[name="type"]').click(function () { var checkValue = $('input:radio[name="type"]:checked').val(); if (checkValue == 1) { $(".qr1").show(); $(".qr2").hide(); } else if (checkValue == 2) { $(".qr2").show(); $(".qr1").hide(); } });
本文内容由小萱整理编辑!