This repository has been archived on 2025-01-09. You can view files and clone it, but cannot push or open issues or pull requests.

17 lines
423 B
JavaScript
Raw Normal View History

2025-01-09 18:30:49 +08:00
window.onload = () => {
let oBtn = document.getElementById('btn')
oBtn.addEventListener('click', () => {
let option = {
title: '啦啦啦',
body: 'ok,哈哈哈哈',
icon: 'c.png'
}
let mayNotification = new window.Notification(option.title, option)
mayNotification.onclick = () => {
alert("点击了消息页卡")
}
})
}