⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 4-8.html

📁 Ajax的例子
💻 HTML
字号:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>单选框的使用</title>
<script language="javascript">
function Look()
{
	for(var i =0;i<radioForm.country.length;i++)
	{
		if(radioForm.country[i].checked)    //判断单选按钮是否被选中
		{
			alert(radioForm.country[i].value);
			break;
		}
		else
			continue;
	}
}
</script>
</head>
<body>
<div align="center">
  <form name="radioForm" method="post" action="">
    <table width="70%"  border="0">
      <tr>
        <td>选择国家</td>
      </tr>
      <tr>
        <td><input type="radio" name="country" value="中国" checked>
          中国        <br><input type="radio" name="country" value="美国">
        美国        <br><input type="radio" name="country" value="英国">
        英国</td>
      </tr>
      <tr>
        <td><input name="button" type="button" id="look" value="查看" onClick="Look()"></td>
      </tr>
    </table>
  </form>
</div>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -