chrome 扩展在点击关闭通知按钮时禁用通知声音

chrome extension disable notification sound on click of close notification button

我创建了允许用户创建、编辑和删除提醒的提醒应用程序,我还创建了声音通知,但是当我点击通知弹出窗口的关闭按钮时我遇到了一个问题 html 它应该声音关闭它继续。我该如何解决这个问题?

以下是我的background.js

代码
  function audioNotification(){
   var yourSound = new Audio('http://www.html5rocks.com/en/tutorials/audio/quick/test.ogg');
    yourSound.play();
  }

您应该在函数外部创建一个变量,这样您仍然可以引用该变量。

试试这个

var yourSound; // <- moved outside of function

function audioNotification(){
  // ...
  yourSound = new Audio('http://www.html5rocks.com/en/tutorials/audio/quick/test.ogg');
  yourSound.play();

}

然后停止调用 onclick() 部分

yourSound.pause()

顺便说一句,那里没有 .stop() 函数