實例九
本實例主要介紹了Document對象讀取表單元素的使用(下拉菜單、鏈接屬性的使用)
<html>
<head>
<title>下拉菜單</title>
<script language="javascript">
function display()
{
if(document.selectForm.team.selectedIndex==0) //判斷是否進行了選擇
{
alert("您沒有做選擇!");
}
else
{
var index = document.selectForm.team.selectedIndex; //讀出當前選項的下標
alert("您選擇的球隊是:"+document.selectForm.team.options[index].value);
}
}
</script>
</head>
<body>
<div align="center">
<form action="" method="post" name="selectForm" id="selectForm">
<table width="70%" border="0">
<tr>
<td>請選擇喜歡的球隊:</td>
</tr>
<tr>
<td><select name="team">
<option value="0">--未選擇--</option>
<option value="巴塞羅那">巴塞羅那</option>
<option value="AC米蘭">AC米蘭</option>
<option value="尤文圖斯">尤文圖斯</option>
<option value="曼徹斯特聯">曼徹斯特聯</option>
<option value="切爾西">切爾西</option>
</select></td>
</tr>
<tr>
<td><input name="look" type="button" id="look" value="單擊查看" onClick="display()"></td>
</tr>
</table>
<a href="http://www.baidu.com" name="baidu" target="_blank">有問題百度一下</a>
<br><br>
<a href="http://www.google.com" name="google" target="_blank">Google也可以</a><br><br>
<script language="javascript">
document.write("第一個連接的信息:<br>");
document.write("<b>href:</b>"+document.links[0].href+"<br>");
document.write("<b>pathname:</b>"+document.links[0].pa