<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>1</title>
</head>
<body>
1.
<input type="radio" name="r1" value="1">A
<input type="radio" name="r1" value="2">B
<input type="radio" name="r1" value="3">C
<input type="radio" name="r1" value="4">D<br>
<div id="choose1" style="display:none">你做地第一个题目</div>
<p>2.
<input type="radio" name="r2" value="1">A
<input type="radio" name="r2" value="2">B
<input type="radio" name="r2" value="3">C
<input type="radio" name="r2" value="4">D<br>
<div id="choose2" style="display:none">你做地第二个题目</div>
</p>
<p> 
<input type=button onclick="cc()" value="提交">
</p><Script>
function cc()
{
    for(k=1;k<=2;k++)
    {
        var obj = eval("r"+k);
        for(j=0;j<obj.length;j++)
        {
            if(obj[j].checked)
     {
             break;
         }
        }
        if(j==obj.length)
        {
        alert("请你做完所有题目");
        return;
        }
    }
    for(i=1;i<=2;i++)
document.getElementById("choose"+i).style.display='block';
return;
}
</script>
</body>
</html>