-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (53 loc) · 1.82 KB
/
index.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>
<head>
<meta charset="UTF-8">
<meta charset="UTF-8">
<meta name="applicable-device" content="mobile"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<meta content="telephone=no" name="format-detection"/>
<meta content="black" name="apple-mobile-web-app-status-bar-style">
<meta content="yes" name="apple-mobile-web-app-capable"/>
<meta http-equiv="Cache-Control" content="no-transform"/>
<meta http-equiv="Cache-Control" content="no-siteapp"/>
<title>TalkingData</title>
<link rel="stylesheet" href="css/public_head.css" />
<link rel="stylesheet" href="css/index.css" />
<script type="text/javascript" src="js/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="js/TalkingData.js"></script>
<script type="text/javascript" src="js/phone.js" ></script>
</head>
<body>
<!--head_line-->
<div class="head_line">
<p class="head_line_p">
TalkingData
</p>
</div>
<div class="new_index">
<div class="wd_title">
<img src="images/wd_ico.png">App Analytics
</div>
<div class="wd_index">
<div class="btn_line">
<input id="btn_base" type="button" class="bottom_btn" value="基础统计">
</div>
<div class="btn_line">
<input id="btn_standard" type="button" class="bottom_btn" value="标准事件">
</div>
</div>
</div>
<script>
// 基础统计页面
$('#btn_base').on("click", function(){
TalkingData.onPageEnd(window.location.href);
window.location.href = 'basePage.html';
});
// 标准事件页面
$('#btn_standard').on("click", function() {
TalkingData.onPageEnd(window.location.href);
window.location.href = 'standardPage.html';
});
</script>
</body>
</html>