onclick和onblur冲突问题的快速解决⽅法
新浪⾸页的搜索框⾥⾯有⼀个使⽤ajax的下拉框。我们需要实现⼀个点击下拉框⾥⾯的⼀项,让搜索框⾥⾯的值变成这⼀项,同时下拉框消失的效果,但同时在点击其他地⽅的时候,这个下拉框也要消失。⼤致如图:
我们同时使⽤onblur和onclick来使下拉框隐藏,但是更⼤的问题出现了,这两个功能相冲突,onblur过
于强悍,根本没有onclick⽅法实现的机会,搜索框⽆法获取点击项的内容。这个就是我们想要解决的onclick和onblur冲突问题。
对应这个问题,这⾥我们介绍两种解决办法:
1. 使⽤setTimeout来使onblur时间延期执⾏,使onclick执⾏完后再执⾏onblur。(其中setTimeout的时间设定应该在100ms以上,否则依旧不⾏)⽰例代码如下:
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
*{ margin: 0; padding: 0; list-style: none; }
form{
width:500px;
margin:0 auto;
position:relative;
zoom:1;
}
form:after{
clear:both;
content:"";
display:block;
input绑定onblur事件}
.
text{
float:left;
border:1px solid #cccccc;
padding-left:14px;
width:300px;
height:34px;
line-height:34px;
font-size:14px;
}
.button{
width:50px;
height:34px;
border:1px solid #cccccc;
line-height:34px;
font-size:14px;
color:#ffffff;
background:#ff8400;
}
ul{
position:absolute;
top:36px;
left:0;
width:300px;
border-right:1px solid #cccccc;
border-left:1px solid #cccccc;
background:green;
display:none;
}
li{
font-size:14px;
line-height:34px;
height:34px;
color:#000000;
border-bottom:1px solid #cccccc;
}
li:hover{
background:yellow;
color:red;
cursor:pointer;
}
</style>
<script>
var ElementById('text');
var ElementById('ul');
var ElementsByTagName('li');
var timer=null;
this.value='';
oUl.style.display='block';
for(var i=0;i<aLi.length;i++){
aLi[i].onclick=function(){
clearTimeout(timer);
oText.value=this.innerHTML;
oUl.style.display='none';
};
}
};
timer=setTimeout(function(){
oUl.style.display='none';
if(!oText.value){
oText.value='请输⼊关键字';
}
},120);
};
};
</script>
</head>
<body>
<form>
<input type="text" value="请输⼊关键字" id="text" class="text"/>
<input type="button" value="搜索" class="button"/>
<ul id="ul">
<li>返回窗⼝是否已被关闭</li>
<li>返回窗⼝的⽂档显⽰区的⾼度</li>
<li>返回窗⼝的⽂档显⽰区的宽度。</li>
<li>设置或返回窗⼝的名称。</li>
<li>返回窗⼝的外部⾼度。</li>
</ul>
</form>
</body>
</html>
2. 使⽤usedown来代替onblur实现隐藏下拉框功能<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<style>
*{ margin: 0; padding: 0; list-style: none; }
form{
width:500px;
margin:0 auto;
position:relative;
zoom:1;
}
form:after{
clear:both;
content:"";
display:block;
}
.text{
float:left;
border:1px solid #cccccc;
padding-left:14px;
width:300px;
height:34px;
line-height:34px;
font-size:14px;
}
.
button{
width:50px;
height:34px;
border:1px solid #cccccc;
line-height:34px;
font-size:14px;
color:#ffffff;
background:#ff8400;
}
ul{
position:absolute;
top:36px;
left:0;
width:300px;
border-right:1px solid #cccccc;
border-left:1px solid #cccccc;
background:green;
display:none;
}
li{
font-size:14px;
line-height:34px;
height:34px;
color:#000000;
border-bottom:1px solid #cccccc;
}
li:hover{
background:yellow;
color:red;
cursor:pointer;
}
</style>
<script>
var ElementById('text');
var ElementById('ul');
var ElementsByTagName('li');
var timer=null;
this.value='';
oUl.style.display='block';
for(var i=0;i<aLi.length;i++){
aLi[i].onclick=function(){
clearTimeout(timer);
oText.value=this.innerHTML;
oUl.style.display='none';
};
}
};
var oEvent=ev||event;
var target=oEvent.target||oEvent.srcElement;          if(target.parentNode!==oUl&&target!==oText){            oUl.style.display='none';
}
};
if(!oText.value){
oText.value='请输⼊关键字';
}
};
};
</script>
</head>
<body>
<form>
<input type="text" value="请输⼊关键字" id="text" class="text"/>
<input type="button" value="搜索" class="button"/>
<ul id="ul">
<li>返回窗⼝是否已被关闭</li>
<li>返回窗⼝的⽂档显⽰区的⾼度</li>
<li>返回窗⼝的⽂档显⽰区的宽度。</li>
<li>设置或返回窗⼝的名称。</li>
<li>返回窗⼝的外部⾼度。</li>
</ul>
</form>
</body>
</html>
以上这篇onclick和onblur冲突问题的快速解决⽅法就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。