radio 事件

增加页面 显示或影藏某一项

$(":radio").click(function () {
if ($(this).val() == "3" || $(this).val() == "2") {
$('#tr1').hide();
$('#tr').hide();
}
else {
$('#tr1').show();
$('#tr').show();

}
});

编辑页面根据对应的radio对某一项进行影藏或显示

if ($('#tr2 :radio:checked').val() == "2" || $('#tr2 :radio:checked').val() == "3")
{
$('#tr1').hide();
$('#tr').hide();
}

posted @ 2017-06-21 19:06  隔空相望  阅读(184)  评论(0编辑  收藏  举报