I think it would be better to keep a player and use a javascript function to change src and run, so you can have as many sounds as you want without having to worry about getting controlled running multiple players.
Follow a very simple example.
var tocar = function(url){
$("#audioPlayer").attr('src',url);
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<audio id="audioPlayer" controls autoplay></audio>
<br>
<button onclick="tocar('http://www.w3schools.com/tags/horse.mp3');">Horse.mp3</button>
<button onclick="tocar('http://www.w3schools.com/tags/horse.ogg');">Horse.ogg</button>
<button onclick="tocar('https://upload.wikimedia.org/wikipedia/commons/c/c8/Example.ogg');">Exemple.ogg</button>
<button onclick="tocar('https://upload.wikimedia.org/wikipedia/en/4/45/ACDC_-_Back_In_Black-sample.ogg');">ACDC.ogg</button>
Did not load any image, could put HTML?
– PauloHDSousa
I tested here and worked each independent, changes the audio SRC DO to SRC="http://www.w3schools.com/html/horse.mp3"
– PauloHDSousa
There are two audios on the same page. If you play them both, they will play simultaneously and I didn’t want that to occur.
– Allan Conserva Jr.
@Allanconservajr. and what do you want to happen if the person gives play in both?
– Bacco