文章导读:在新的一年中,各位网友都进入紧张的学习或是工作阶段。网学的各位小编整理了Javascript-下拉列表实现友情链接跳转的相关内容供大家参考,祝大家在新的一年里工作和学习顺利!
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>通过下拉列表实现友情链接跳转-中国网页设计-myeducs.cn</title>
</head>
<body>
<form name=form1>
<select on
Change="if(this.selectedIndex && this.selectedIndex!=0)
{window.open(this.value);}this.selectedIndex=0;">
<option selected>===中国网页设计===</option>
<option value=http://www.baidu.com>百度</option>
<option value=http://www.163.com>网易</option>
</select>
</form>
</body>
</html>