01.
<!DOCTYPE html>
02.
<html>
03.
<head>
04.
<title>sound</title>
05.
</head>
06.
07.
<body>
08.
<button type=
"submit"
onClick=
"play()"
>Play</button>
09.
</body>
10.
11.
<script>
12.
function
play() {
13.
var
audio = document.createElement(
"audio"
);
14.
var
strings =
"invite.wav 1.wav"
.split(
" "
);
15.
var
index = 1;
16.
17.
audio.src =
"sound/"
+ strings[0];
18.
audio.play();
19.
20.
21.
audio.onended =
function
() {
22.
if
(index < strings.length) {
23.
audio.src =
"sound/"
+ strings[index];
24.
audio.play();
25.
index++;
26.
}
27.
};
28.
}
29.
</script>
30.
</html>