<html>
<head>
<script>
function proverka()
{
if(document.f1.ch1.checked==true)
alert("Молодец");
else
alert("Подумай еще");
}
</script>
</head>
<body>
<form name="f1">
Здесь записан вопрос.<br>
<input type="checkbox" name="ch1">правильный<br>
<input type="checkbox" name="ch2">неправильный<br>
<input type="button" value="Проверить" onclick="proverka()">
</form>
</body>
</html>
<html>
<head>
<script>
function fam()
{
document.f1.r1[0].checked=true;
}
</script>
</head>
<body>
<form name="f1">
<input type="radio" name="r1">пункт1<br>
<input type="radio" name="r1">пункт2<br>
<input type="button" value="отметить" onclick="fam()">
</form>
</body>
</html>
<html>
<head>
<script>
function smena()
{
if(document.f1.r1[0].checked==true)
document.f1.r1[1].checked=true;
else
document.f1.r1[0].checked=true;
}
</script>
</head>
<body>
<form name="f1">
<input type="radio" name="r1">пункт1<br>
<input type="radio" name="r1">пункт2<br>
<input type="button" value="сменить" onclick="smena()">
</form>
</body>
</html>
<html>
<head>
<script>
function proverka()
{
if(document.f1.otvet[0].checked==true)
alert("Молодец");
else
alert("Подумай еще");
}
</script>
</head>
<body>
Какой заряд у электрона?<br>
<form name="f1">
<input type="radio" name="otvet">отрицательный<br>
<input type="radio" name="otvet">положительный<br>
<input type="button" value="Проверить" onclick="proverka()">
</form>
</body>
</html>