桌面弹出通知 - html/css语言栏目:html.css - 自学

[ html]   <!DOCTYPE html>   <html>    <head>     <title>桌面通知Notification </title>         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />     <script>              </script>    </head>       <body>           <input type="button" value="测试桌面通知" onclick = "checkPermissionAndShow()" />   <script>       window.Notifications = window.Notifications || window.webkitNotifications;          function checkPermissionAndShow(){           var perLel = window.Notifications.checkPermission();              if(perLel == 0){               console.log('已授权...');               showNotification();              }else if(perLel ==1){               console.log('待授权...');               window.Notifications.requestPermission(checkPermissionAndShow);              }else{               console.log('已禁止...');              }       }          function showNotification(){            var newNotification = Notifications.createNotification(                   'http://avatar.csdn.net/4/5/3/1_qyf_5445.jpg',                   '桌面通知',                   '桌面通知 示例');           newNotification.show();          }   </script>    </body>       </html>    
返回顶部
跳到底部

Copyright 2011-2024 南京追名网络科技有限公司 苏ICP备2023031119号-6 乌徒帮 All Rights Reserved Powered by Z-BlogPHP Theme By open开发

请先 登录 再评论,若不是会员请先 注册