我有一个select
元素,我想检测option
用户悬停在哪个元素上。我在这里使用的是 ShankarSangoli 编写的代码,但它不起作用。我已经在 Chrome 中进行了测试。
$("select").hover(function (e)
{
var $target = $(e.target);
if($target.is('option')){
alert($target.attr("id"));//Will alert id if it has id attribute
alert($target.text());//Will alert the text of the option
alert($target.val());//Will alert the value of the option
}
});