php
Galloping_Leo 2020-02-07 php
# php
# 待填坑
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div>dsd</div>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
2
3
4
5
6
7
8
9
10
11
body,html{
background-color: red;
}
1
2
3
2
3
window.onload = function (){
let div = document.createElement('div')
div.innerText = 'test'
document.body.appendChild(div)
}
1
2
3
4
5
2
3
4
5
console.log("我的js")
1