选择字段中的悬停选项不起作用

时间:2017-02-18 10:08:46

标签: javascript jquery html css

我想使用jQuery将鼠标悬停在选项字段上,因为我想回调另一个JS函数。

我在https://jsfiddle.net/ajg99wsm/上创建了一个简单示例,以显示我的问题。

JS:

  $("select option").hover(function(){
    $("#show-me").show();
  });

HTML:

<select>
  <option>Value 1</option>
  <option>Value 2</option>
  <option>Value 3</option>
</select>

 <div id="show-me" style="display:none;">
  This content to show
 </div> 

我注意到,在32位Firefox(任何版本)上,它正在运行。在64位Chrome或Firefox上没有。

我正在使用当前的jQuery版本,这令人费解。 我尝试了所有使用的方法:Hovering over an <option> in a select list

任何建议如何使用jQuery或Javascript悬停选项?

0 个答案:

没有答案