<html> <head><title>sound</title></head> <body> <button type="submit" onClick="play()">Play</button> </body> <script> function play(){ var audioinvite = document.createElement('audio'); audioinvite.setAttribute('src', 'sound/invite.wav'); audioinvite.play(); var audio1 = document.createElement('audio'); audio1.setAttribute('src', 'sound/1.wav'); audio1.play(); } </script> </html>
<!DOCTYPE html> <html> <head> <title>sound</title> </head> <body> <button type="submit" onClick="play()">Play</button> </body> <script> function play() { var audio = document.createElement("audio"); var strings = "invite.wav 1.wav".split(" "); // เก็บคิวไฟล์ใน string var index = 1; audio.src = "sound/" + strings[0]; audio.play(); // ใช้ onended event เพื่อรอไฟล์ปัจจุบันเล่นเสร็จก่อน ค่อยเล่นคิวต่อไป audio.onended = function () { if (index < strings.length) { audio.src = "sound/" + strings[index]; audio.play(); index++; } }; } </script> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง