3
我想用jQuery設置音頻元素的音量。設置jQuery不工作的HTML5音頻屬性音量
<audio class="audio" autoplay="autoplay" controls="controls" src="All_Right.mp3"></audio>
,所以我選擇音頻標籤和設置,像這樣體積:
$('.audio').prop(volume, 0.1);
但我得到了未捕獲參考錯誤:volume is not defined
什麼是錯我的代碼?
非常感謝你 – user1386906