14-1.htm

来自「JScript网页特效,包含很多的实现网页特效的方法.」· HTM 代码 · 共 36 行

HTM
36
字号
<html>
<head>
<title>§14.1 下拉菜单(一)</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>

<body bgcolor="#FFFFFF">
<script language="JavaScript">

<!--Begin Code

function surfto(form) 
{
  var myindex=form.smallboy.selectedIndex
  window.open(form.smallboy.options[myindex].value, "", "toolbar=no,location=yes,directories=no,status=no,menubar=no,scrollbars=yes, resizable=yes,copyhistory=yes,width=600,height=400");
}

//End Code-->

</script>

<form name="myform">
  <center>
    <select name="smallboy" size="1">
      <option value="#" selected>请选择链接</option>
      <option value="http://www.163.com">网易</option>
      <option value="http://www.coolbi.com">酷毙网</option>
      <option value="http://www.sina.com.cn">新浪网</option>
      <option value="http://javascript100.yeah.net">JavaScript 100例</option>
    </select>
<input type="BUTTON" value="打开" onClick="surfto(this.form)"> 
  </center>
</form>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?