gpt4 book ai didi

javascript - HTML5 中带有 "audio"元素的 JQuery

转载 作者:行者123 更新时间:2023-11-30 17:37:26 25 4
gpt4 key购买 nike

我是 JQuery 的新手,这是一个基本问题,我不知道为什么下面的代码不起作用。请帮我弄清楚。

<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-1.10.2.min.js">
</script>
<script>

function test()
{
var audios=$("#audio1");
alert(audios.volume); //This line does not work, it returns "undefined"
audios.volume=0.5; //This line does not work
// audios.hide(); - This works fine
}
</script>
<title>This is a test</title>
</head>

<body>
<input type="button" value="Test" onclick="test()">
<audio id="audio1" controls autoplay>
<source src="http://zz.qz828.net/06/three.mp3" type="audio/mpeg">
Your browser does not support the audio element.
</audio>
</body>
</html>

不知道为什么这两行不起作用:

alert(audios.volume);  //This line does not work
audios.volume=0.5; //This line does not work

谢谢!

最佳答案

您需要将 volume 属性设置为 dom 元素,$("#audio1")返回一个没有 volume 的 jQuery 对象属性(property)。

所以需要从jQuery对象访问dom元素然后设置属性或者使用.prop()设置属性值

audios[0].volume=0.5;
//or audios.prop('volume', 0.5);

关于javascript - HTML5 中带有 "audio"元素的 JQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21746888/

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