当前位置: 首页 > 图文教程 > 网络编程 > Javascript > JS初学者实例教程(9):下拉菜单和链接属性

Javascript
给初学者提供几本学习js值得看的书
Javascript----文件操作
Vml+Js算法:完成5个小球在网页运动(碰壁返回)的游戏,详细注释
Vml+Dhtml:制作一个应用渐变颜色效果不错的进度条
Dhtml+Js算法:5个小球运动的简化版,变通实现更简单的飞行的图片
Vml+Dhtml:小小的页面效果,叫它"淘气鬼"好了
判断客户浏览器是否支持cookie
几种常用的表单输入判断
CSDN无限级树数据库版(ASP+ACCESS)
JavaScript 寫遊戲 : 俄羅斯方塊
JavaScript 寫遊戲 : 搬吖
JavaScript 遊戲 : 貪吃蛇
JavaScript 寫時鍾日曆
VML:经典的图片叠加效果(灰色调)
一个简单的仿xp的js下拉菜单
JScript 寫 sortNode
关于javascript中数组元素删除问题的讨论
IE中非模式对话框(showModelessDialog)应用
Dhtml:用ondrag事件简单的实现鼠标拖动物件.
对WebUI技术感兴趣的说

Javascript 中的 JS初学者实例教程(9):下拉菜单和链接属性


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-28   浏览: 104 ::
收藏到网摘: n/a

上一篇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].pathname+"<br>");
document.write("<b>port:</b>"+document.links[0].port+"<br>");
document.write("<b>protocol:</b>"+document.links[0].protocol+"<br>");
document.write("<b>target:</b>"+document.links[0].target+"<br>");
document.write("<br><br>");
document.write("第二个连接的信息:<br>");
document.write("<b>href:</b>"+document.links[1].href+"<br>");
document.write("<b>pathname:</b>"+document.links[1].pathname+"<br>");
document.write("<b>port:</b>"+document.links[1].port+"<br>");
document.write("<b>protocol:</b>"+document.links[1].protocol+"<br>");
document.write("<b>target:</b>"+document.links[1].target+"<br>");
</script>
  </form>
</div>
</body>
</html>

效果演示:


[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]