DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> JS初學者實例教程(9):下拉菜單和鏈接屬性
JS初學者實例教程(9):下拉菜單和鏈接屬性
編輯:關於JavaScript     
上一篇JS教程學習了:JS初學者實例教程(8):單選按鈕、復選按鈕 

實例九

本實例主要介紹了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

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved