-
Notifications
You must be signed in to change notification settings - Fork 1
/
compile.html
45 lines (43 loc) · 1.59 KB
/
compile.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>编辑页面</title>
<link rel="stylesheet" type="text/css" href="css/50.css">
</head>
<body>
<header class="head">
<span class="head_log">问卷管理</span>
<span class="my_fifle"><a href="./index.html">我的问卷</a></span>
</header>
<article class="compile_body">
<div class="compile_title_box">
<input type="text" name="" class="compile_title" placeholder="请输入标题">
</div> <!-- 标题 -->
<div class="compile_box"> <!-- 编辑区 -->
<div id="createArea"></div>
<div class="compile_space">
<!-- 存放选项的区域 单选 多选 文本. -->
<div class="compile_space_hidebutton">
<button id='compile_radio'>单选</button>
<button id='compile_multiple'>多选</button>
<button id="compile_textbox">文本框</button>
</div>
<div class="compile_button">
<span class="absolute_center">添加问题</span>
</div>
</div> <!-- 编辑按钮区域 -->
</div>
<div class="button_body">
<label>问卷截止日期</label>
<div id="date_box"></div> <!-- 存放日历的位置 -->
<button class="button button_style_white">保存问卷</button>
<button class="button button_style_blue">发布问卷</button>
</div> <!-- 问卷截止日 和保存问卷发布问卷的位置 -->
</article>
<script type="text/javascript" src='js/jquery-3.1.0.js'></script>
<script type="text/javascript" src='js/listen.js'></script>
<script type="text/javascript" src='js/compile_choice_model.js'></script>
<script type="text/javascript" src="js/date.js"></script>
</body>
</html>