<div id="growDiv"></div>
<select id="combobox">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>7</option>
<option>8</option>
<option>9</option>
<option>0</option>
</select>
<script>
$('#growDiv').on('mouseover', function (){
$(this).css('height', '200px');
}).on('mouseout', function (){
$(this).css('height', '75px');
})
</script>
<style>
#growDiv {
width: 300px;
height: 50px;
background-color: gold;
position: absolute;
z-index: 1000;
}
#combobox {
margin-top: 75px;
}
</style>
あなたはそれを見ることができます: http://jsfiddle.net/dHN2K/
Safari で、ドロップダウン オプションを展開してから黄色の div を「ホバー」すると、オプションが一番上に表示されたままになります。これを修正するにはどうすればよいですか?
$('select').remove(); も試しました しかし、それはそこに残っています!!
ありがとうございました!