option").hover(function () { alert($(this).attr-6ren">
gpt4 book ai didi

jQuery-选择列表选项悬停

转载 作者:行者123 更新时间:2023-12-03 22:17:00 25 4
gpt4 key购买 nike

我想在鼠标光标悬停在选项上时提醒该选项。我使用这段代码:

$("select > option").hover(function ()
{
alert($(this).attr("id"));
});

不幸的是,这在 IE 和 FF 中都不起作用。

有人可以给我提示吗?

最佳答案

你可以试试这个。

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

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

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