Does the music in web-view continue after WeChat Mini Programs shuts down?

the music in web-view continues to play after WeChat Mini Programs shuts down. How can I stop it?

Oct.22,2021

write

in the uninstall event on the page
/**
   * --
   */
  onUnload: function() {
    audioCtx.pause();//
    }
Menu