Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.6k views
in Technique[技术] by (71.8m points)

H5 WEB ,点击 Notification,当窗口不存在时如何指定打开的URL?

步骤:

1 打开webapp, 比如www.abc.com/abc,
2 发送通知Notification.
3 关闭第一步打开的网页。
4 点击通知栏的消息就会在浏览器打开 www.abc.com
问: 如何在第四步打开www.abc.com/abc

PS: 网址我随便敲的,只为说明问题。


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
var notification = new Notification("标题", {
  body: "内容"
});
notification.onclick = function() {
 window.open("https://www.abc.com/abc");
 notification.close();
};

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...