是否可以向 webkitNotfications 添加重定向?

发布于 2024-11-04 20:38:10 字数 179 浏览 0 评论 0原文

当用户单击通知时,Chrome 中的 webkitNotifications API 不会让我重定向到页面。

有什么方法可以让它像 Mac 上的 Growl 一样工作,弹出通知,然后用户单击它即可重定向?例如,用户收到一条新消息,通过 webkitNotifications 收到通知,单击该消息并转到 message.php。

The webkitNotifications API in Chrome won't let me redirect to a page when the user clicks on the notification.

Is there any way I can make it work like Growl on the Mac, with a notification popping up, and then the user clicking on it to be redirected? For example, the user receives a new message, is notified via webkitNotifications, clicks on the message and is taken to message.php.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

爱冒险 2024-11-11 20:38:10

也许你应该尝试这个(onclick)

    function setNotifJL(strtitre,strmsg) {
    if (window.webkitNotifications.checkPermission() == 0 ) {
    Window.webkitNotifications.createNotification('../mypic.gif',strtitre, strmsg);
    n.show();
    n.onclose = notify;
    n.onclick = nclicked;
    }
    }
    function notify() {location.href='<whereever you want';}

Maybe you should try this (onclick)

    function setNotifJL(strtitre,strmsg) {
    if (window.webkitNotifications.checkPermission() == 0 ) {
    Window.webkitNotifications.createNotification('../mypic.gif',strtitre, strmsg);
    n.show();
    n.onclose = notify;
    n.onclick = nclicked;
    }
    }
    function notify() {location.href='<whereever you want';}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文