这是一个 jsfiddle:http: //jsfiddle.net/JQnUs/4/
HTML:
<div class="problem-select">
<select>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
<input type="hidden" value="1" />
</div>
<div class="overlapping-div">
</div>
<div class="hover-here">Hover here</div>
<input class="other-input" type="text" />
CSS:
.problem-select {
position: absolute;
top: 0px;
left: 0px;
z-index: 0;
}
.overlapping-div {
position: absolute;
top: 0px;
left: 0px;
width: 100px;
height: 100px;
background-color: red;
z-index: 100;
display: none;
}
.hover-here {
position: absolute;
right: 70px;
top: 0px;
border: 1px solid black;
height: 100px;
width: 100px;
}
.other-input {
position: absolute;
top: 200px;
left: 0px;
}
jQuery(使用 1.8.2):
jQuery(document).ready(function() {
jQuery(".hover-here").hover(function(){ showDiv(); }, function(){ hideDiv(); });
//Used in potential solution 7...
//jQuery("select").change(function(){ jQuery(this).siblings('input').val(jQuery(this).val()); });
});
function showDiv() {
//Potential solution number 1... (does't work in chrome or safari)
//jQuery('select').blur();
//Potential solution number 2... (leaves lines on top of the red div)
//jQuery('option').hide();
//Potential solution number 3... (doesn't work in safari and still has the issue of working out which selects to hide)
//jQuery('select').hide();
//Potential solution number 4... (doesn't hide drop down options at all and would also need to know which selects to disable)
//jQuery('select').attr('disabled','disabled');
//Potential solution number 5... (doesn't work at all)
//jQuery(".hover-here").click();
//Potential solution number 6... (doesn't work in safari or chrome)
//jQuery('.other-input').focus();
//Potential solution number 7... (doesn't work in safari)
//innerHtml = jQuery('.problem-select').html();
//value = jQuery('.problem-select').children("input").val();
//jQuery('.problem-select').html(innerHtml);
//jQuery('.problem-select').children("select").val(value);
jQuery('.overlapping-div').show();
}
function hideDiv() {
//Potential solution number 2 cont...
//jQuery('option').show();
//Potential solution number 3 cont...
//jQuery('select').show();
//Potential solution number 4 cont...
//jQuery('select').attr('disabled',null);
jQuery('.overlapping-div').hide();
}
如果单击选择框将其打开,然后将鼠标悬停在右侧的 div 上而不从选择框中选择选项或先单击页面上的其他位置,则选择选项仍显示在出现的红色 div 顶部.
我尝试过的一些事情在小提琴中,相关部分只需要取消注释即可查看它们会发生什么。他们中的大多数人在 Firefox 中工作,没有人在 safari 中工作。
我在实际应用程序中面临的另一个问题是选择框可能位于或可能不在红色 div 下方,因此解决方案需要能够确定选择框选项是否会遮挡红色 div 或继续允许正常使用(选择选项)。(在应用程序中,可以在页面上执行其他操作时保持红色 div 可见)。
如何停止选项列表显示在 chrome、safari、ie7-9 和 firefox 中的红色 div 上,同时不影响选择框的功能(如果红色 div 没有覆盖它)?
我试图避免使用使用其他 html 元素重新创建选择框的插件来执行此操作,因为根据我的经验,它们不适用于更改定期在各种事件上触发的功能的应用程序。