버튼에 배경 음악을 추가하는 방법은 무엇입니까? 이번 글은 주로 배경음악 샘플 코드를 추가하기 위한 JS 구현 버튼을 소개합니다. 필요한 친구들이 참고하면 도움이 될 것 같습니다.
1-Code
<html> <head> <meta charset="utf-8"> <title>js实现按键声</title> </head> <body> <ul> <li> <a href="menu-list" rel="external nofollow" rel="external nofollow" rel="external nofollow" >主页</a> </li> <li> <a href="menu-list" rel="external nofollow" rel="external nofollow" rel="external nofollow" >详情</a> </li> <li> <a href="menu-list" rel="external nofollow" rel="external nofollow" rel="external nofollow" >列表</a> </li> </ul> <script language="javascript"> $(function() { $('menu-list').click(function() { $('btn-bgm').remove(); $('body').append('<embed src="button.wav" autostart="true" hidden="true" loop="false" class = "btn-bgm">'); }); }); </script> </body> </html>
2-Description
미리 노드에 이벤트를 바인딩하고 배경 음악을 추가하려면 클릭하세요.
관련 권장 사항:
웹페이지 배경음악 설정_html/css_WEB-ITnose
위 내용은 JS를 사용하여 버튼에 배경 음악을 추가하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!