gpt4 book ai didi

javascript - 使用 Ajax 在 Hover 上播放声音

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

我正在尝试根据此处找到的“重叠”方法为通过 Ajax 加载的内容播放悬停声音:http://css-tricks.com/play-sound-on-hover/ :

function audioController(){
$("a") // loop each menu item
.each(function(i) {
if (i != 0) { // only clone if more than one needed
$("#hover")
.clone()
.attr("id", "hover-" + i)
.appendTo($(this).parent());
}
$(this).data("beeper", i); // save reference
})
.mouseenter(function() {
$("#hover-" + $(this).data("beeper"))[0].play();
});
$("#hover").attr("id", "hover-0"); // get first one into naming convention
}

这适用于所有非 ajax href。但是,对于 Ajax 内容,它仅适用于 ajax 内容中的第一个 href。我收到此错误消息:
Uncaught TypeError: Cannot call method 'play' of undefined这将是这一行:
$("#hover-" + $(this).data("beeper"))[0].play();
这是我尝试使用 Ajax 调用加载函数的方式:
    $("#site-nav .nav1").on("click", function(event) {
$('ul.top-level').load('assets/includes/recent.php', function(){
$(this).show();
audioController();
});
event.preventDefault();
});

最佳答案

我建议您尝试使用用于 HTML5 的 SoundManager2。
你可以找到它here带 sample 。

关于javascript - 使用 Ajax 在 Hover 上播放声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10710032/

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