»
Tiếng AnhTiếng PhápTiếng Việt

In - Chơi các file âm thanh - JavaScriptBank.com

Phiên bản đầy đủ: jsB@nk » Multimedia » Âm thanh » Chơi các file âm thanh
URL: https://www.javascriptbank.com/playing-sound-files.html

Chơi các file âm thanh © JavaScriptBank.comMột đoạn mã JavaScript rất đơn giản đề dùng chơi các tập tin âm thanh trực tiếp trên trang web.

Phiên bản đầy đủ: jsB@nk » Multimedia » Âm thanh » Chơi các file âm thanh
URL: https://www.javascriptbank.com/playing-sound-files.html



JavaScript
<script>function play(){  sound1.src=source.value  sound2.src=source.value}function stop(){  sound1.src=""  sound2.src=""}</script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<input id="source" type="file" style="width: 600px;"><br><input onclick="play()" value="play" type="button" style=""><input onclick="stop();stoptimer();" value="stop" type="button" style=""><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->