-
Notifications
You must be signed in to change notification settings - Fork 74
/
Copy pathindex.html
73 lines (69 loc) · 1.92 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no">
<style type="text/css">
*{
margin: 0;
padding: 0;
}
.box{
text-align: center;
}
.btn{
line-height: 44px;
text-align: center;
font-size: 14px;
border: 1px solid blue;
background-color: #fff;
margin-bottom: 20px;
padding: 0 10px;
}
.message{
position: fixed;
bottom: 0;
width: 100%;
padding: 10px;
font-size: 14px;
color: #000;
}
</style>
</head>
<body>
<div class="box">
<div class="message" id="message"></div>
<button class="btn" id="J_NativeMethodButton" onclick="HandleAPIMethod();">API Method</button>
<br />
<button class="btn" id="J_APIMethod" onclick="HandleNativeMethod();">Native Method</button>
</div>
<script>
window.ct_isInDevice || document.write('<script src="/CTJSBridge_remote.js"><\/script>')
function HandleAPIMethod() {
window.CTJSBridge.LoadAPI("CTMarvelCharactersAPIManager", {"orderBy":"modified"}, {
"success":function(result){
document.getElementById('message').innerHTML = result;
},
"fail":function(result){
document.getElementById('message').innerHTML = result;
},
"progress":function(result){
document.getElementById('message').innerHTML = result;
},
});
}
function HandleNativeMethod() {
window.CTJSBridge.LoadMethod("Demo", "push", {"key":"value"}, {
"success":function(result){
document.getElementById('message').innerHTML = result;
},
"fail":function(result){
document.getElementById('message').innerHTML = result;
},
"progress":function(result){
document.getElementById('message').innerHTML = result;
},
});
}
</script>
</body>
</html>