-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathask_put.html
52 lines (51 loc) · 1.37 KB
/
ask_put.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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1, user-scalable=no">
<title>问答-提问</title>
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<!-- header -->
<header class="per-head">
<a class="per-fh fh2" href=""></a>
<h1>我要提问</h1>
</header>
<!-- /header -->
<!-- 我要提问 -->
<section class="ask-up bgf mt10">
<textarea name="" id="" cols="30" rows="10" placeholder="问题描述的越清楚,解答的速度越快哦~"></textarea>
</section>
<!-- /我要提问 -->
<!-- 我要提问 -->
<section class="ask-upl bgf mt10">
<h2>选择问题类型</h2>
<ul class="clearfix">
<li>买房</li>
<li>交易过户</li>
<li>卖房</li>
<li>学区房</li>
<li>贷款</li>
<li>其他</li>
</ul>
</section>
<!-- /我要提问 -->
<section>
<input class="ask-btn" type="button" value="提交">
</section>
<script src="js/zepto/zepto.min.js"></script>
<script>
$(function() {
//展开
$(".ask-upl li").click(function() {
$(this).toggleClass('active');
});
//
});
</script>
</body>
</html>