网站首页 手机版
 注册 登录
您现在的位置: 畅无忧设计 >> 网页特效 >> 表单按钮 >> 正文
最新文章
· 输入框输入提示代码
· 文本框提示代码
· 让表单ctrl加回车提交
· 简单代码实现JS多级Select联动菜单
· JS验证数字位数
· 带有介绍的Select列表菜单代码
· Js注册等待
· 点击按钮插入文字在文本框
· radio背景颜色选择器
· 表单内容提交等待效果
热门文章
 Js实现点击添加增加一行,点击删除
 DIV中实现input垂直居中
 常用的选择省份城市的联动下拉列表
 JS动态增加删除一组输入框
 jQuery实现Email邮箱地址自动补全代
 Select实现多选
 JS动态批量创建带表单文本框的表格
 JS实现上传本地图片前先预览
 日期选择下拉框
 漂亮的点击弹出的登陆框
相关文章
无下拉箭头的Select下拉框,实现网页背景
左右两个Select下拉列表进行内容多选、移
Select实现多选
select头像选择代码
下拉列表select中的链接
带有介绍的Select列表菜单代码
来源:源码爱好者 更新时间:2012/2/19 0:32:13 阅读次数: 我要投稿
△运行 ☉预览 #复制 +收藏
特效代码:
<html>
<head>
<title>带有说明的导航栏</title>
</head>
<body>
<script language="JavaScript"> 
<!--
function herfto(){
        if (document.stationform.refsel.options[0].selected){  //根据用户选定的项目
                window.location.href = "http://www.codefans.net";}   //改变本窗口的地址
        else if (document.stationform.refsel.options[1].selected)
        {       window.location.href = "http://www.sina.com.cn";}
        else if (document.stationform.refsel.options[2].selected)                
        {       window.location.href = "http://www.sohu.com";}   
        else if (document.stationform.refsel.options[3].selected)                
        {       window.location.href = "http://www.163.com";}    
        else if (document.stationform.refsel.options[4].selected)                
        {       window.location.href = "http://www.5dcentury.com";}   
        else if (document.stationform.refsel.options[5].selected)                
        {       window.location.href = "http://www.chinaren.com";}     
        else if (document.stationform.refsel.options[6].selected)                
        {       window.location.href = "http://cn.yahoo.com";}   
 //根据可选条目,这里应该相应的增减。
        return true;    
        }
function textValue(){   
        var stationInteger, stationString       
        stationInteger=document.stationform.refsel.selectedIndex   //取得选定项目的编号
        stationString=document.stationform.refsel.options[stationInteger].title //根据编号取得相应说明
        document.stationform.stationtext.value = stationString }  //将说明显示出来
//-->
</script>
 
<form name="stationform">
<select name="refsel" onChange="textValue()" multiple size="5">
<option title="一个提供优质源代码的网站">源码爱好者
<option title="相当不错的虚拟社区">新浪sina
<option title="不用说,要搜索来这里就对了">搜狐
<option title="提供免费个人主页空间">网易163
<option title="一个优秀的学生网站">世纪学苑
<option title="首创同学录,中国学生的聚会场所">中国人
<option title="世界闻名的搜索巨头">雅虎yahoo
</select>
<p>
<input type="button" name="stationbutton" value="Go!" onClick="herfto()" style="background-color: #FFFFFF; border: 1 solid #000000">
<p><input type="text" name="stationtext" value="" size="30" maxlength="35" style="border: 1 solid #000000">
</form>
</body>
</html>
△运行 ☉预览 #复制 +收藏
特效说明:

  带有介绍的Select列表菜单特效代码,并不是导航菜单,这是表单中常用的下拉列表菜单,里面定义的菜单名称和链接都可以自己修改,不同的是添加了一个说明功能,鼠标点击列表中内容的时候,会浮动出本条内容的介绍,另外文本框内的内容也会跟着改变。

  • 上一篇文章:
  • 下一篇文章:
  • 关于我们 - 联系我们 - 广告服务 - 在线投稿 - 友情链接 - 网站地图 - 版权声明
    CopyRight 2008-2010, CWYDESIGN.COM - 畅无忧设计, Inc. All Rights Reserved
    滇ICP备09005765号