chrome升级到22不再支持createHTMLNotification 进入全屏
今天惊奇的发现,chrome22里已经不支持window.webkitNotifications.createHTMLNotification方法了:
但是,在chrome extension里还可以继续使用,比如fehelper里的页面性能检测功能:
Google这是要干嘛?逐步实现自己的w3c标准化?
Web Notification在w3c中确实没有createHTMLNotification这样的方法,甚至没有createNotification。
而是一个及其简单构造器:
var notification = new Notification("我的消息",{ body : '内容', iconUrl : '图标', tag : {}, // 可以加一个tag }); notification.show();
貌似目前也只有chrome里面才有这个API:
更详细的信息,下来有时间再研究吧~~
Ps:如果在你的代码里有用到了webkitNotifications.createHTMLNotification的话,那就尽快升级吧。