async function handleRequest(request) { // ICP备案号 const icp = "ICP备案号"; // 公安备案号 const publicSecurity = "公安备案号"; // HTML页面 const html = ` 小小的日记本

${icp} | 公安备案 ${publicSecurity}

`; return new Response(html, { status: 200, headers: { 'Content-Type': 'text/html; charset=utf-8' } }); } addEventListener('fetch', event => { return event.respondWith(handleRequest(event.request)); });