码迷,mamicode.com
首页 > 其他好文 > 详细

可输入的下拉框

时间:2017-02-06 15:59:17      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:logs   word   order   input   inpu   href   link   :focus   one   

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>可输入的下拉框</title>
<meta name="description" content="">
<meta name="keywords" content="">
<link href="" rel="stylesheet">
</head>
<body>
	<style type="text/css">
	input:focus{
		/*去掉focus效果*/
		outline: none;
	}
	</style>
	<div style="position:relative">
		<div style="display:inline">
			<select name="sel" onchange="this.parentNode.nextSibling.value=this.value" style="width:200px;height:30px;">
				<option value="第一选择">第一选择</option>
				<option value="第二选择">第二选择</option>
			</select>
		</div><input name="box" type="text" style="position:absolute;top:2px;left:2px;height:24px;border:none">
	</div>
    
</body>
</html>

  

可输入的下拉框

标签:logs   word   order   input   inpu   href   link   :focus   one   

原文地址:http://www.cnblogs.com/zqbgds/p/6370457.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!