做出來(lái)了,就是將列表內(nèi)容寫(xiě)到文本框有a標(biāo)簽樣式,不知道怎么去除求教。
<!doctype html>
<html>
<head>
? ? <meta charset="UTF-8">
? ? <title>下拉菜單</title>
<style type="text/css">
body,ul,li{ margin:0; padding:0; font-size:13px;}
ul,li{list-style:none;}
#divselect{width:186px; margin:80px auto; position:relative; z-index:10000;}
#divselect cite{width:150px; height:24px;line-height:24px; display:block; color:#807a62; cursor:pointer;font-style:normal;
padding-left:4px; padding-right:30px; border:1px solid #333333;?
background-color:url(xjt.png) no-repeat right center;}
#divselect ul{width:184px;border:1px solid #333333; background-color:#ffffff; position:absolute; z-index:20000; margin-top:-1px; display:none;}
#divselect ul li{height:24px; line-height:24px;}
#divselect ul li a{display:block; height:24px; color:#333333; text-decoration:none; padding-left:10px; padding-right:10px;}
</style>
? ?<script type="text/javascript">
window.onload=function(){
var box=document.getElementById('divselect'),
? ? title=box.getElementsByTagName('cite')[0],
? ? menu=box.getElementsByTagName('ul')[0],
? ? lis = box.getElementsByTagName('li');
? ? as=box.getElementsByTagName('a'),
? ? ? ? index=-1;
? ?
? ? // 點(diǎn)擊三角時(shí)
? ? title.onclick=function(event){
? ? ? // 執(zhí)行腳本
? ? ? event = event || window.event;
? ? ? menu.style.display = 'block';
? ? ? document.onkeyup = function(event){
? ? ? ?//如果按↓
? ? ? ?if(event.keyCode == 40){
? ? ? ?if(index<lis.length-1){
? ? ? ?index++;
? ? ? ?lis[index].style.backgroundColor = '#369';
? ? ? ?if(index>=1){
? ? ? ?lis[index-1].style.backgroundColor = '#fff';
? ? ? ?}
? ? ? ?}else{
? ? ? ?index = -1;
? ? ? ?lis[lis.length-1].style.backgroundColor = '#fff';
? ? ? ?lis[index+1].style.backgroundColor = '#369';
? ? ? ?index++;
? ? ? ?}
? ? ? ?}
? ? ? ?//如果按↑
? ? ? ?else if(event.keyCode == 38){
? ? ? ?if(index<=0){
? ? ? ?index=lis.length-1;
? ? ? ?lis[index].style.backgroundColor = '#369';
? ? ? ?lis[0].style.backgroundColor = '#fff';
? ? ? ?}else if(index>0){
? ? ? ?lis[index-1].style.backgroundColor = '#369';
? ? ? ?lis[index].style.backgroundColor = '#fff';
? ? ? ?index--;
? ? ? ?}
? ? ? ?}
? ? ? ?//如果按回車(chē)鍵
? ? ? ?else if(event.keyCode == 13){
? ? ? ?if(index>=0){
? ? ? ?title.innerHTML = lis[index].innerHTML;
? ? ? ?lis[index].style.backgroundColor ='#fff';
? ? ? ?index = -1;
? ? ? ?menu.style.display = 'none';
? ? ? ?}
? ? ? ?}
? ? ? }
? ? ? if(event.stopPropagation){
? ? ? ?event.stopPropagation();
? ? ? }else {
? ? ? ?event.cancelBubble();
? ? ? }
? ? }??
? ??
? ?// 滑過(guò)滑過(guò)、離開(kāi)、點(diǎn)擊每個(gè)選項(xiàng)時(shí)
? ?for(var i=0;i<lis.length;i++){
? ? lis[i].onmouseover =function(event){
? ? this.style.backgroundColor = '#369';
? ? }
? ? lis[i].onmouseout =function(event){
? ? this.style.backgroundColor = '#fff';
? ? }
? ? lis[i].onclick = function(event){
? ? title.innerHTML = this.innerHTML;
? ? menu.style.display = 'none';
? ? }
? ?}
? ?// 點(diǎn)擊頁(yè)面空白處時(shí)
? ?document.onclick =function(){
? ? ? ?// 執(zhí)行腳本
? ? ? ?menu.style.display = 'none';
? ?}
?}
? ?</script>
</head>
<body>
<div id="divselect">
? ? ? <cite>請(qǐng)選擇分類(lèi)</cite>
? ? ? <ul>
? ? ? ? ?<li id="li"><a href="javascript:;" selectid="1">ASP開(kāi)發(fā)</a></li>
? ? ? ? ?<li><a href="javascript:;" selectid="2">.NET開(kāi)發(fā)</a></li>
? ? ? ? ?<li><a href="javascript:;" selectid="3">PHP開(kāi)發(fā)</a></li>
? ? ? ? ?<li><a href="javascript:;" selectid="4">Javascript開(kāi)發(fā)</a></li>
? ? ? ? ?<li><a href="javascript:;" selectid="5">Java特效</a></li>
? ? ? </ul>
? ? </div>
</body>
</html>
2019-10-23
你顯示的 是<li> 標(biāo)簽的 HTML內(nèi)容,可不是有HTML內(nèi)容.
可以用正則去掉HTML標(biāo)簽,
像這樣:??title.innerHTML = this.innerHTML;??