当自动完成功能在 jquery 中可见时播放噪音

发布于 2024-11-02 11:09:46 字数 465 浏览 0 评论 0原文

我希望能够在自动完成框可见时执行 jquery。 我希望能够从该页面听到这种噪音 http://www.wav-sounds.com/various/beep.wav

到目前为止,我的函数已经有了这段代码,并且自动完成功能可以正常工作。我只是不知道如何将可见的噪音包含在内。

                $("input[name=search]").live('focus', function() {
                    $(this).autocomplete({
                        source: myData,
                })
                });

任何帮助将不胜感激! 谢谢!

I want to be able to perform a jquery for when an autocomplete box is visible.
I want to be able to hear this noise from this page
http://www.wav-sounds.com/various/beep.wav

I have this code for my function so far, and the autocomplete works. I just dont know how to include that noise when it is visible.

                $("input[name=search]").live('focus', function() {
                    $(this).autocomplete({
                        source: myData,
                })
                });

Any help would be greatly appreciated!
Thanks!

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

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

发布评论

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

评论(2

水晶透心 2024-11-09 11:09:46

我假设您指的是来自以下插件: http://docs.jquery.com/Plugins/autocomplete

如果是这样,页面底部的示例看起来会对您有所帮助。

$("input[name=search]").live('focus', function() {
    $(this).autocomplete({
        source: myData,
    }).result(function(event, item) {
        // code to play sound
    });
});

I assume you mean the plugin from: http://docs.jquery.com/Plugins/autocomplete ?

If so, the example at the bottom of the page looks like it will assist you.

$("input[name=search]").live('focus', function() {
    $(this).autocomplete({
        source: myData,
    }).result(function(event, item) {
        // code to play sound
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文