案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<body>
3
4
<form>
5
Male: <input id="male" alt="male" type="radio" name="Sex" value="Male" />
6
<br />
7
Female: <input id="female" alt="female" type="radio" name="Sex" value="Female" />
8
</form> 
9
10
<p>The alt text for the radio buttons are:
11
<script type="text/javascript">
12
document.write(document.getElementById('male').alt);
13
document.write(" and ");
14
document.write(document.getElementById('female').alt);
15
</script></p>
16
17
</body>
18
</html>
19