문제

This is a normal music player's HTML code:

<html>
<body>

<audio controls>
  <source src="zui you ji.mp3" type="audio/mpeg">
</audio>

</body>
</html>

How can I make it play songs automatically?

도움이 되었습니까?

해결책

try this html5 code.....

 <html>
<body>

<audio controls autoplay>
  <source src="zui you ji.mp3" type="audio/mpeg">
</audio>

</body>
</html>

다른 팁

You can add the autoplay attribute to your HTML 5 audio tag.

<html>
    <body>

    <audio autoplay="autoplay" controls>
      <source src="zui you ji.mp3" type="audio/mpeg">
    </audio>

    </body>
 </html>

You don't need to put autoplay="autoplay" just autoplay as it is

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top