<!DOCTYPE html><html lang="en"><link rel="stylesheet" type="text/css" href="styleFile.css" /><head> <meta charset="UTF-8"> <title>Dear Js</title></head><body><p id="timer"></p><a id="volumeChangeLink"> <img id="speakerImage" src="images/volumeWhite3.png" /></a><audio id="rainAudio" src="rain.m4a" autoplay="autoplay" ></audio><script src="test.js"></script></body></html>
经过探究我发现我只能使用document.getElementById("rainAudio").volume = 我想要的音量大小;
来改变音量而不能使用document.getElementById("rainAudio").setAttribute("volume", "我想要的音量大小");
来改变, 这是为什么呢?
相关分类