Example016实现下拉框

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>实例016</title>
	<style>
		* {
			padding: 0;
			margin: 0;
		}
		.one {
			width: 200px;
			//height: 150px;
			margin: 0 auto;
			border: 1px solid #333;
		}
		.title {
			background-color: #333;
			width: 200px;
			height: 24px;
		}
		.title h3 {
			float: left;
			margin-left: 4px;
		}
		.tt {
			background-color: #666;
			border: 1px solid #666;
		}
		.ttx {
			background-color: #999;
			border: 1px solid #999;
		}
		.title h3 a {
			text-decoration: none;
			color: black;
		}
		.dis {
			display: none;
			background-color: #999;
		}
		li {
			list-style: none;
		}
	</style>
</head>
<body>
	<div id="one" class="one">
		<div class="title">
			<h3 class="tt" onmouseover="demo(0)"><a href="">选项一</a></h3>
			<h3 class="tt" onmouseover="demo(1)"><a href="">选项二</a></h3>
			<h3 class="tt" onmouseover="demo(2)"><a href="">选项三</a></h3>
		</div>
		<div class="content" id="con">
			<div class="dis">
				<ul>
					<li>111111</li>
					<li>222222</li>
					<li>333333</li>
					<li>444444</li>
				</ul>
			</div>
			<div class="dis">
				<ul>
					<li>我爱你</li>
					<li>你爱我</li>
					<li>我你爱</li>
					<li>爱你我</li>
					<li>爱我你</li>
				</ul>
			</div>
			<div class="dis">
				<ul>
					<li>han</li>
					<li>handsome</li>
					<li>handsomehan</li>
					<li>hanhandsome</li>
					<li>hanhan</li>
					<li>handsomehanhan</li>
					<li>hanhanhandsome</li>
				</ul>
			</div>
		</div>
	</div>
	<script>
		function demo(num) {
			var h3s = document.getElementsByTagName("h3");
			var cons = document.getElementById("con").getElementsByTagName("div");
			//alert(cons);
			for (var i = 0; i < h3s.length; i ++) {
				if(i == num) {
					h3s[num].className="ttx";
					cons[num].style.display="block";
					cons[num].style.backgroundColor="#999";
				}else {
					h3s[i].className="tt";
					cons[i].style.display="none";
				}
			}
		}
	</script>
</body>
</html>

  

时间: 2024-10-26 01:47:16

Example016实现下拉框的相关文章

读取mysql中的特定列值放入页面的下拉框中

1.使用的技术:JSP,Spring JDBC(Mapper) 2.代码 2.1 接口 public interface IMeetingRoomDao { public List<Mrcap> selectCap(); public List<Mrfloor> selectFloor(); } 2.2 实现类 @Override public List<Mrcap> selectCap() { List<Mrcap> caplist = new Array

自建List&lt;&gt;绑定ComboBox下拉框实现省市联动

using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.SqlClient; namespace _04省市联动 { public partial cl

【峰回路转】Excel技巧百例 06.设置下拉框

如何才能在Excel中完成一个如下图所示的下拉框呢? 1.首先鼠标选中B2单元格 2.点击上方的"数据"中的"数据验证"下方的小三角,然后点击浮层中的第一项:数据验证 3.在弹出的窗口中,选择"序列",在来源中输入:请选择,优,良,中,差,点击[确认]. 这样一个下拉框,我们就做好了. 版权声明:本文为博主原创文章,未经博主允许不得转载.

struts2 jsp表单提交后保留表单中输入框中的值 下拉框select与input

原文地址:struts2 jsp表单提交后保留表单中输入框中的值 下拉框select与input jsp页面 1     function dosearch() {2         if ($("#textValue").val() == "") {3                 $("#errortip").html("<font color='#FF0000'>请输入查询内容</font>")

选择下拉框是如何取选项的值?

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>select</title> <script type="text/javascript"> </script> </head> <body id="body&

vue.js实现单选框、复选框和下拉框

Vue.js可以很方便的实现数据双向绑定,所以在处理表单,人机交互方面具有很大的优势.下边以单选框.复选框和下拉框为例介绍他们在HTML和Vue.js中的具体实现方式. 一.单选框 在传统的HTML中实现单选框的方法如下: <div id="app"> <input type="radio" name="gender" value="man" id="man"/><label

jQuery之双下拉框

双下拉框要实现的效果,实际上就是左边下拉选择框里的内容,可以添加到右边,而右边同理.写了个简单的例子,来说明一下. 代码如下: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 <!DOCTYPEhtml> <html> <head> <title>jq

angularjs下拉框空白

搜索angularjs下拉框空白,可以出现很多解决方案,但是对于静态字段来说,网上目前还没有找到解决方案,如下: 1 <select class="form-control" ng-model="UserState" 2 ng-init="UserState=0"> 3 <option value="-1">选择状态</option> 4 <option value="0&q

select下拉框的样式在浏览器上的兼容问题

最近项目中遇到了自定义下拉框的默认样式在谷歌,火狐,IE上显示不同的问题. 左侧图片就是重写的样式,下拉框的右侧三角是选用的bootstrap里面的图片,通过绝对定位放过去的. css: select { /*Chrome同Firefox与IE里面的右侧三角显示的样式不同*/ border: solid 1px #ddd; /*将默认的select选择框样式清除*/ appearance:none; -moz-appearance:none; -webkit-appearance:none; p