本文主要是介绍关于saas物业管理系统报修通知桌面弹窗。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
代码如下:
<!DOCTYPE html>
<html lang="en">
<head><meta charset="UTF-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1.0"><title>Document</title>
</head>
<body><script>Notification.requestPermission()
var notification = new Notification('报修工单', {body: '您有新的报修工单待审核哦',icon: 'img/logo.ico'// "图标路径,若不指定默认为favicon"});
notification.onclick = function(event) {event.preventDefault(); // 阻止浏览器默认事件window.open('https://saas.cvoon.com/data/tenement/guarantee/owner', '_blank');
}</script>
</body>
</html>
通知的其他属性也可自行研究尝试。
具体的学习可以在这儿查看https://developer.mozilla.org/zh-CN/docs/Web/API/notification
这篇关于关于saas物业管理系统报修通知桌面弹窗。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!