html5音频+ javascript + ajax

I have a problem to keep working the controls of a player in html5 "" via javascript on the page after an ajax request occurs.

When the page is loaded, the player starts playing and "Play, Pause, Next, Prev" controls work, but after I access any other page with ajax request, the controls no longer work.

The controls are within div.content which has its recharged every ajax request content.

If they want to see in practice http://devintec.com/dev/jjsv

Probably you're attaching your event handler after page load, so whenever the controls div is updated, the event handlers disappear (because the DOM elements that had them attached are removed). You'll have to attach the event handlers again after your AJAX call completes, or use event delegation.