gpt4 book ai didi

javascript - 使 JQuery 函数成为 Plain JS

转载 作者:行者123 更新时间:2023-12-02 16:05:50 25 4
gpt4 key购买 nike

嘿,我有以下函数,它在 JQuery 中运行得很好,但由于多种原因,我需要在纯 JS 中使用它。

$('audio').on("play pause ended", function () {
document.title = document.title.replace("\u25B6", "")
$("audio").each(function (index) {
if (!this.paused) {
document.title = "\u25B6 " + document.title.replace("\u25B6 ", "")
return false;
}
})
});

我尝试将其转换为纯 JS(见下文),但它只是出现以下错误:TypeError: undefined is not a function (evaluating 'sound.addEventListener')

var sound = document.getElementsByTagName('audio');
sound.addEventListener('play pause ended', function () {
document.title = document.title.replace('\u25B6', '')
sound.each(function (index) {
if (!this.paused) {
document.title = '\u25B6 ' + document.title.replace('\u25B6 ', '')
return false;
}
})
});

最佳答案

以下应该可以解决问题:

var sounds = document.getElementsByTagName('audio');
/* Loop through the nodelist - this is **not** an array */
for(var i = 0; i < sounds.length; i++){
/* Get the item in your nodelist. This **is** an element. */
var sound = sounds.item(i);
/* Now add your event listener here - You can only add one at a
* time, though. So I decided to make the event a separate
* function and attach it multiple timers. */
function eventHandler(){
document.title = document.title.replace('\u25B6', '')
if (!sound.paused) {
document.title = '\u25B6 ' + document.title.replace('\u25B6 ', '')
return false;
}
}
sound.addEventListener('play', eventHandler, false);
sound.addEventListener('pause', eventHandler, false);
sound.addEventListener('ended', eventHandler, false);
}

有两件事:document.getElementsByTagName 返回一个 HTMLNodeList,它不是一个数组。它可以循环,因为它有一个 length 属性,但它不能使用 forEach(因为它还有一个名为 item 的函数,用于获取位于提供的节点列表索引)。

其次,this 并不引用 forEach 中的项目,您需要将一个参数传递给您的 forEach 函数,您可以引用(又名 array.forEach(function(item){});,其中 item 将引用您的项目)。但正如我所说,这不会产生任何影响,因为 nodeList 不是数组。

已更新

我突然想到有一个简单的方法来附加所有事件,所以我对其进行了适当的修改。

关于javascript - 使 JQuery 函数成为 Plain JS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30758325/

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