jquery 将鼠标悬停在列表框上时获取列表框值

发布于 2024-12-18 00:34:17 字数 714 浏览 0 评论 0原文

当我将鼠标悬停在所选列表框上时,我试图获取它的值。下面的代码在 google crome 中运行良好,但在 Internet Explorer 中不起作用。有没有办法让它在 IE 中工作。

 <script language="javascript" type="text/javascript">
     $(document).ready(function () {
         $("#ListBox1 option").hover(
        function (e) {
            var a = this.value;
            alert(a);

        });
     });
</script>

<select name="drop1" id="ListBox1" size="4" multiple="multiple">
    <option value="1">item 1</option>
    <option value="2">item 2</option>
    <option value="3">item 3</option>
    <option value="4">item 4</option>
    <option value="0">All</option>

</select>

I am tryinh to get the value of my selected list box when I hover over it. The below code works well in google crome but does not work in internet explorer. Is there a way to get this working in IE.

 <script language="javascript" type="text/javascript">
     $(document).ready(function () {
         $("#ListBox1 option").hover(
        function (e) {
            var a = this.value;
            alert(a);

        });
     });
</script>

<select name="drop1" id="ListBox1" size="4" multiple="multiple">
    <option value="1">item 1</option>
    <option value="2">item 2</option>
    <option value="3">item 3</option>
    <option value="4">item 4</option>
    <option value="0">All</option>

</select>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浊酒尽余欢 2024-12-25 00:34:17

您可以尝试在选择列表上使用 jQuery 包装器,这可能会消除浏览器特定的问题 -

 $(document).ready(function () {
     $("#ListBox1 option").hover(
    function (e) {
        var a = $(this).val();
        alert(a);
    });
 });

You could try using the jQuery wrapper on the select list, that might remove the browser specific problems -

 $(document).ready(function () {
     $("#ListBox1 option").hover(
    function (e) {
        var a = $(this).val();
        alert(a);
    });
 });
别理我 2024-12-25 00:34:17

使用 :selected 在超过所选项目时发出警报

$("#ListBox1 option:selected").hover( function () {  alert(); });

Use :selected to alert when over the selected item

$("#ListBox1 option:selected").hover( function () {  alert(); });
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文