各通知にリンク/パーマリンクを設定できるようにしたいので、ユーザーがクリックしたときに; その後、パーマリンクの場所に移動し、
静的リンクが使用されているため、少し異なる解決策を持つこの回答を見てきました。
私は何とかしたい:
var noti = window.webkitNotifications.createNotification(
'http://funcook.com/img/favicon.png',
'HTML5 Notification',
'HTML5 Notification content...',
'http://mycustom.dynamic.link.com/' /* invented code */
)
noti.onclose = function(){ alert(':(') };
noti.onclick = function(){
window.location.href = $(this).url; /* invented code */
};
noti.show();
チャンスはありますか?(私は本当に静的な html ファイル ソリューションが好きではありません.この構文を維持したいと思います)