-
Notifications
You must be signed in to change notification settings - Fork 189
/
Copy path实验4.html
99 lines (98 loc) · 3.73 KB
/
实验4.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>我的个人简介</title>
<style type="text/css">
body{
}
</style>
</head>
<body>
<table align="center" border="1" cellspacing="0">
<caption><h4>个人简历</h4></caption>
<thead align="center">
<tr>
<th colspan="7" align="center"><a style="color:black;" target="_BLANK" href="https://github.com/zjy869827329/html5-2018">我的GitHub主页</a></th>
</tr>
</thead>
<tbody align="center">
<tr>
<td><b>姓 名</b></td>
<td>张xx</td>
<td><b>性 别</b></td>
<td>男</td>
<td><b>出生年月</b></td>
<td>1997xxxx</td>
<td rowspan="3"><img style"padding-top:2px;" src="https://ss2.baidu.com/6ONYsjip0QIZ8tyhnq/it/u=1990453139,2666337591&fm=58&bpow=407&bpoh=529" height="120" width="100"></td>
</tr>
<tr>
<td><b>籍 贯</b></td>
<td>广东</td>
<td><b>民 族</b></td>
<td>汉</td>
<td><b>身体状况</b></td>
<td>健康</td>
</tr>
<tr>
<td><b>政治面貌</b></td>
<td>共青团员</td>
<td><b>爱 号</b></td>
<td>前端设计 电影</td>
<td><b>学 历</b></td>
<td>本科在读</td>
</tr>
<tr>
<td><b>毕业学校</b></td>
<td colspan="2">惠州学院</td>
<td colspan="2"><b>专业</b></td>
<td colspan="2">软件工程</td>
</tr>
<tr>
<td><b>毕业时间</b></td>
<td colspan="2">xxx</td>
<td colspan="2"><b>联系电话</b></td>
<td colspan="2">xxxxxxxxx</td>
</tr>
<tr>
<td><b>学校住址</b></td>
<td colspan="2">xxx</td>
<td colspan="2"><b>E-mail</b></td>
<td colspan="2">869827329@qq.com</td>
</tr>
<tr>
<td><b>个人特点</b></td>
<td colspan="7" align="left">
耐心,热爱学习,能够自律地规划自己的路线。
</td>
</tr>
<tr>
<td><b>学习简介</b></td>
<td colspan="7" align="left">
xxxx 至 xxxxx 毕业于惠州学院。<br />
熟悉css,熟悉html,懂得基本的javascript,jquery<br>
<br />
目标:成为一名前端工程师,有可能的话杀进BAT!杀进BAT!<br>
目前:希望多参与前端的项目实践。<br>
</td>
</tr>
</tbody>
</table>
<form align="center" method="post" accept-charset="utf-8">
<br>
<textarea class = "text" style="opacity:0.8;" rows="5" cols="83" type="textarea" name="message" placeholder="留言"></textarea>
<br>
<input class="submit" type="submit" value="提交">
</form>
<script>
let submit = document.querySelector(".submit"),
text = document.querySelector(".text");
body = document . querySelector("body");
body.style.backgroundColor = "skyblue";
submit.onclick = ()=>{
!text.value&&alert("请写入内容");
text.value&&alert("发送成功");
}
</script>
</body>
</html>