auto commit

This commit is contained in:
DuYi 2024-08-27 10:14:28 +08:00
parent 00db8656e2
commit e7c0cfdaac
43 changed files with 43 additions and 37 deletions

View File

@ -315,3 +315,4 @@ context.stroke(); // 进行勾勒
-*EOF*-

View File

@ -30,4 +30,4 @@
op.style.marginLeft = "200px";
</script>
</body>
</html>
</html>

View File

@ -49,3 +49,4 @@
</script>
</body>
</html>

View File

@ -233,3 +233,4 @@
-*EOF*-

View File

@ -214,4 +214,4 @@
------
-*EOF*-
-*EOF*-

View File

@ -50,4 +50,4 @@
-*EOF*-
-*EOF*-

View File

@ -220,4 +220,4 @@ db.transaction(function (tx) {
-*EOF*-
-*EOF*-

View File

@ -881,4 +881,4 @@ openDB('stuDB', 1)
-*EOF*-
-*EOF*-

View File

@ -327,4 +327,4 @@ function deleteDB(db, storeName, id) {
}
}
})
}
}

View File

@ -60,4 +60,4 @@
</script>
</body>
</html>
</html>

View File

@ -396,4 +396,4 @@ file.onchange = function () {
-------
-*EOF*-
-*EOF*-

View File

@ -69,4 +69,4 @@
</script>
</body>
</html>
</html>

View File

@ -481,3 +481,4 @@ Cache-Control: max-age=31536000
-*EOF*-

View File

@ -34,4 +34,4 @@ http.createServer(function (req, res) {
});
}).listen(3000, function () {
console.log("服务器已启动,监听 3000 端口...");
})
})

View File

@ -22,4 +22,4 @@ img:first-of-type{
img:last-of-type{
float: right;
}
}

View File

@ -26,4 +26,4 @@
<script src="../js/index.js"></script>
</body>
</html>
</html>

View File

@ -2,4 +2,4 @@ const h1 = document.querySelector("h1");
h1.onclick = function(){
window.alert("这是一个标题");
}
}

View File

@ -659,4 +659,4 @@ console.log("服务器已启动...");
}
</script>
</body>
```
```

View File

@ -23,4 +23,4 @@
}
</script>
</body>
</html>
</html>

View File

@ -19,4 +19,4 @@
</script>
</body>
</html>
</html>

View File

@ -28,4 +28,4 @@
</script>
</body>
</html>
</html>

View File

@ -18,4 +18,4 @@
}
</script>
</body>
</html>
</html>

View File

@ -5,4 +5,4 @@ self.addEventListener("message", async event=>{
clients.forEach(function(client){
client.postMessage(event.data.value);
})
})
})

View File

@ -16,4 +16,4 @@
</script>
</body>
</html>
</html>

View File

@ -20,4 +20,4 @@
</script>
</body>
</html>
</html>

View File

@ -24,4 +24,4 @@
</script>
</body>
</html>
</html>

View File

@ -23,4 +23,4 @@
</script>
</body>
</html>
</html>

View File

@ -12,4 +12,4 @@ onconnect = function (e) {
}
}
}
}

View File

@ -84,4 +84,4 @@ function getDataByKey(db, storeName, key) {
resolve(request.result);
};
});
}
}

View File

@ -43,4 +43,4 @@
</script>
</body>
</html>
</html>

View File

@ -77,4 +77,4 @@
</script>
</body>
</html>
</html>

View File

@ -16,4 +16,4 @@
</script>
</body>
</html>
</html>

View File

@ -21,4 +21,4 @@
</script>
</body>
</html>
</html>

View File

@ -31,4 +31,4 @@
</script>
</body>
</html>
</html>

View File

@ -17,4 +17,4 @@
</script>
</body>
</html>
</html>

View File

@ -26,4 +26,4 @@
}
</script>
</body>
</html>
</html>

View File

@ -29,4 +29,4 @@
</script>
</body>
</html>
</html>

View File

@ -35,4 +35,4 @@ wss.on("connection", function(client){
})
})
console.log("Web Socket 服务器已经启动....");
console.log("Web Socket 服务器已经启动....");

View File

@ -253,4 +253,4 @@ onconnect = function (e) {
-------
-*EOF*-
-*EOF*-

View File

@ -29,4 +29,4 @@
</script>
</body>
</html>
</html>

View File

@ -2,4 +2,4 @@ let count = 0;
setInterval(function(){
count++;
postMessage(count);
}, 1000);
}, 1000);

View File

@ -288,3 +288,4 @@
> - window.open window.postMessage
> - Websocket

View File

@ -35,3 +35,4 @@
18. 各个浏览器兼容前缀?
19. 跨标签页的通讯方式有哪些(哔哩哔哩)