知道“音频”何时出现标签 html 已播放

发布于 2024-12-10 02:11:47 字数 480 浏览 0 评论 0原文

我正在使用音频标签,我想要的是计算已经播放了多少次。

我的代码是这样的:

<audio id="sound" controls="controls" onplaying="doing(this.id)">;
    <source src="path/filename" type="audio/wav/">; 
</audio>; 
<input type="text" id="numbers" value= "0" >

然后在一个 javascript 文件中

Var n=0;
function doing(onplaying)
{
    n = n+1;
    document.getElementById("numbers").value =  n;
}

但它不起作用,有人知道如何做到这一点,像这样或以不同的方式。 提前致谢。

I'm using audio tags, what I want it's to count how many times has been played.

My code it's like this:

<audio id="sound" controls="controls" onplaying="doing(this.id)">;
    <source src="path/filename" type="audio/wav/">; 
</audio>; 
<input type="text" id="numbers" value= "0" >

Then in a javascript file

Var n=0;
function doing(onplaying)
{
    n = n+1;
    document.getElementById("numbers").value =  n;
}

But it does not work, does someone know how to do this, like this or in a different way.
Thanks in advance.

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

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

发布评论

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

评论(1

花开柳相依 2024-12-17 02:11:47

您可能需要 play 事件,而不是 playinghttp:// jsfiddle.net/a84rC/

document.getElementById("sound").addEventListener('play', doing); // bind event

var n = 0;

function doing() {
    n++; // increase (this is a shortcut to n = n + 1)
    document.getElementById("numbers").value = n;
}

You probably want the play event, not playing: http://jsfiddle.net/a84rC/.

document.getElementById("sound").addEventListener('play', doing); // bind event

var n = 0;

function doing() {
    n++; // increase (this is a shortcut to n = n + 1)
    document.getElementById("numbers").value = n;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文