function enterShow(val){ if(val){ $("#downss").removeClass('down'); $("#downss a").attr({ href: val, target: '_blank', }); }else{ $("#downss").addClass('down'); $('#downss a').removeAttr('href'); $('#downss a').removeAttr('target'); $('#downss').click(function(){ $('html, body').animate({ scrollTop: $('.pc-game-down').offset().top }, 1000); }); } } $(document).ready(function() { var selectedValue = $('input[name="choice"]:checked').val(); enterShow(selectedValue); $('input[name="choice"]').change(function () { var selectedValue = $('input[name="choice"]:checked').val(); enterShow(selectedValue); }); })