检测所有浏览器中选择选项的鼠标悬停

时间:2012-09-05 15:10:47

标签: jquery drop-down-menu jquery-hover

我试图让一个框突出显示下拉菜单的一侧,以便与当前悬停的选项内联。这不容易解释,所以这是一个工作示例(仅适用于Firefox)。 http://jsfiddle.net/WJaVz/21/

我已经在Chrome和IE中尝试了它,但似乎都没有识别该选项的mouseenter事件,因此预览框永远不会出现。我试图将事件更改为鼠标悬停并专注于他们喜欢它们但它仍然不能在IE和Chrome中工作。 (还没有经过测试的歌剧或野生动物园。)

一个想法是可能使下拉列表成为无序列表并使其看起来像下拉列表,我想我可以检测到li具有mouseenter事件的时间。

有没有人知道这个的解决方案,所以它适用于大多数当前的浏览器,如果不是所有的浏览器都没有重建大部分浏览器?

2 个答案:

答案 0 :(得分:2)

感谢mcpDESIGNS,我确实尝试了一些其他的东西,但无济于事。我最终将它重建为无序列表。我把列表看起来像一个下拉菜单然后我可以很容易地检测到用户将鼠标悬停在无序列表中的时间....这适用于所有浏览器= WIN 8D

以下是代码:http://jsfiddle.net/CJbeF/22/

答案 1 :(得分:0)

@ SubstanceD的解决方案是我发现的最好的解决方案,但它有一些可访问性问题,所以我重新使用它来使用单选按钮的字段集。

HTML:

<div id="colourlist">red</div>
<fieldset id="colours">
  <label for="red">red<input type="radio" name="foo" id="red"/></label>
  <label for="blue">blue <input type="radio" name="foo" id="blue"/> </label>
  <label for="green">green<input type="radio" name="foo" id="green"/></label>   
  <label for="orange">orange<input type="radio" name="foo" id="orange"/></label>       
</fieldset>
<div id="preview"></div>

的CSS:

body{
    margin: 0;
    padding: 50px;
}
input {
    opacity:0;
}
label {
    display:block;
    height:20px;
}
#colourlist{
    position: absolute;
    border: 1px solid #B5B0AC;
    width: 200px;
    height: 21px;
    background: url('http://www.thermaxindia.com/images/dropdown_arrow.JPG') 180px 0 no-repeat;    
}
label:hover{
    background-color: #3399FF;
}
#colours{
   display: none;
   position: relative;
   top: 22px;
   left: 0;
   width: 200px;
   position: relative;
   border: 1px solid #B5B0AC;
   overflow-y: scroll;
   height:60px;
}
#preview{
   display: none;
   position: relative;
   background-color: #fff;
   border: 1px solid #ccc;
   padding: 10px;
   width: 250px;
   height: 30px;  
}

JS:

$("#colours label").on('mouseenter', function(){
    var O = $(this).offset();
    var CO = $("#colours").offset();
    $("#preview").css("top", O.top-150).show();
    $("#preview").css("left", CO.left+160);
    var text = $(this).text();
    $("#preview").css("background-color", text);
});
$("#colours input").on('click', function(){
    var text = $(this).attr("id");
    $("#colourlist").text(text);
    $("#colours").hide();
    $("#preview").hide(); 
});
$("#colourlist").on('click', function(e){
    e.stopPropagation();
    $("#colours").show();   
});
$("body").on('click',function(e){
    $("#colours").hide();
});

这里是小提琴:http://jsfiddle.net/MikeGodin/CJbeF/109/