2
最近我聽說Microsoft Edge移動版在Windows 10週年更新之後支持Web通知。所以我嘗試了下面的代碼,但沒有奏效。Microsoft Edge Mobile是否支持Web通知?
if (window.Notification && Notification.permission !== "denied") {
Notification.requestPermission(function(status) { // status is "granted", if accepted by user
var n = new Notification('Title', {
body: 'I am the body text!',
icon: '/path/to/icon.png' // optional
});
});
}
我在Windows 10 mobile上使用Edge 38.14393.67.0和EdgeHTML 14.14393。