-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path提问.html
57 lines (53 loc) · 2.11 KB
/
提问.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>我要提问</title>
<link rel="stylesheet" type="text/css" href="提问.css">
<link rel="stylesheet" type="text/css" href="public.css"><!--外部样式-->
<script type="text/javascript" src="动画.js"></script>
</head>
<body>
<h1>课业难题交流</h1>
<div id="first" onclick=window.open("首页(待登录).html") onmouseover="over(this)" onmouseout="out(this)" ></div>
<div id="textOne">
<p>退出登录</p>
</div>
<div id="second" onclick=window.open("个人中心.html") onmouseover="over(this)" onmouseout="out(this)" ></div>
<div id="textTwo">
<p>个人中心</p>
</div>
<div id="three" onclick=window.open("shouye(denglu).php") onmouseover="over(this)" onmouseout="out(this)" ></div>
<div id="textThree">
<p>我要搜索</p>
</div>
<center>
<div class="background">
<div class="transbox">
<form action="tiwen.php" method="post" enctype="multipart/form-data">
<input type="text" placeholder="在这里选择题目所属的课程" list="datalist" name="course" class="search">
<datalist id="datalist">
<option>高等数学A</option>
<option>高等数学B</option>
<option>高等数学C</option>
<option>高等数学D</option>
<option>线性代数B</option>
<option>离散数学</option>
<option>程序设计与思想方法</option>
<option>C++程序设计</option>
</datalist>
<br>
<br>
<textarea rows="7" cols="35" placeholder="在这里输入你要提问的内容(不多于500字)" maxlength="500" name="content"></textarea>
<br>
<center>
<label for="file" style="cursor: pointer;"></label>
<input type="file" name="file" id="file" class="search" style="cursor: pointer;"><br><br>
<input type="submit" name="submit" value="发表" class="upLoad">
</center>
</form>
</div>
</div>
</center><!--提供提问功能,在提问时,要选好问题所属的课程,这样问题就会出现在相应的课程中。提问时,可以上传图片。-->
</body>
</html>