gpt4 book ai didi

jquery - 选择选项悬停

转载 作者:太空宇宙 更新时间:2023-11-03 20:53:06 24 4
gpt4 key购买 nike

我有一个 select 元素,我想检测用户将鼠标悬停在哪个 option 上。我正在使用代码 here ShankarSangoli 已经写过,但没有用。我已经在 Chrome 中测试过了。

JSFiddle

$("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
}
});

最佳答案

您尝试实现的功能在 Chrome 和 IE 中尚不可用。您当前提到的问题中指出了这一点。

正如@purgatory 101 所指出的,组合框的巧妙使用将允许您“ Hook ”额外的 jquery,这可能允许您 alert();悬停。

只是将源代码工作到组合框,这将是指向正确方向的指针:

$('ul.ui-autocomplete ui-menu li').hover(function(){
//do your stuff here.
});

关于jquery - 选择选项悬停,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13733231/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com