gpt4 book ai didi

javascript - 如何模拟对JS Audio元素的点击?

转载 作者:行者123 更新时间:2023-12-03 02:30:11 26 4
gpt4 key购买 nike

假设我有一个元素。如何模拟播放点击?暂停点击?等等

<audio controls>
<source src="song.mp3" type="audio/mpeg">
</audio>

最佳答案

使用.play().pause()函数:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<audio controls>
<source id="audio_player" src="https://file-examples.com/wp-content/uploads/2017/11/file_example_MP3_1MG.mp3" type="audio/mpeg">
</audio>
<script>
document.getElementById("audio_player").play();
</script>
</body>
</html>

关于javascript - 如何模拟对JS Audio元素的点击?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60934941/

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