标签:col type nbsp rip 窗口 utf-8 eve color doctype
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>监控窗口是否活动</title> </head> <body> <script> window.addEventListener(‘blur‘, ()=>{ document.title = ‘放入后台‘; }, true); window.addEventListener(‘focus‘, ()=>{ document.title = ‘进入页面‘; }, true); </script> </body> </html>
标签:col type nbsp rip 窗口 utf-8 eve color doctype
原文地址:https://www.cnblogs.com/pxblog/p/12896058.html