Сообщение от Григорий Данилович
|
Не получается установить програмно значение радио
|
Вот несколько вариантов...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=windows-1251' />
<script src='http://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
-->
<style type='text/css'>
</style>
<script type='text/javascript'>
$(function(){
alert('Start');
$('#s1').click();
alert(1);
$('#s2').prop('checked',true);
alert(2);
$('#s3').attr('checked', 'checked');
alert(3);
})
</script>
</head>
<body>
<input type=radio name="sops" value='1' f='jpg' id='s1' >
<input type=radio name="sops" value='2' f='jpg' id='s2'>
<input type=radio name="sops" value='3' f='png' id='s3'>
</body>
</html>