|
@@ -35,14 +35,27 @@
|
35
|
35
|
</div>
|
36
|
36
|
</body>
|
37
|
37
|
</html>
|
|
38
|
+<script type="text/javascript" src="jquery-2.1.0.js"></script>
|
38
|
39
|
<script type="text/javascript">
|
39
|
40
|
var Button = document.getElementsByClassName("button")[0];
|
40
|
41
|
Button.onclick = function () {
|
|
42
|
+ clickNumber();//点击统计
|
41
|
43
|
if(navigator.userAgent.match(/(iPhone|iPod|iPad);?/i)){
|
42
|
|
- window.location.href='http://a.app.qq.com/o/simple.jsp?pkgname=com.kuxuan.jinniunote&from=singlemessage&isappinstalled=0';
|
|
44
|
+ window.location.href='https://itunes.apple.com/cn/app/id1398141686?mt=8';
|
43
|
45
|
}
|
44
|
46
|
if(navigator.userAgent.match(/android/i)){
|
45
|
47
|
window.location.href='http://android.myapp.com/myapp/detail.htm?apkName=com.kuxuan.jinniunote';
|
46
|
48
|
}
|
47
|
49
|
}
|
|
50
|
+ function clickNumber () {
|
|
51
|
+// 统计点击量
|
|
52
|
+ $.ajax({
|
|
53
|
+ type:"post",
|
|
54
|
+ url:"/api/V2/updateStatistics",
|
|
55
|
+ dataType:"json",
|
|
56
|
+ success: function (res){
|
|
57
|
+ console.log(res)
|
|
58
|
+ }
|
|
59
|
+ });
|
|
60
|
+ }
|
48
|
61
|
</script>
|