案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function alertId()
5
  {
6
  var txt="Id: " + document.getElementById("male").id
7
  txt=txt + ", type: " + document.getElementById("male").type
8
  txt=txt + ", value: " + document.getElementById("male").value
9
  alert(txt)
10
  }
11
</script>
12
</head>
13
<body>
14
15
<form>
16
Male: <input id="male" type="radio" name="Sex" value="Male" />
17
<br />
18
Female: <input id="female" type="radio" name="Sex" value="Female" />
19
<br /><br />
20
<input type="button" value="Alert details" onclick="alertId()" />
21
</form>
22
23
</body>
24
</html>
25