Newer
Older
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Test ITIS Webservice</title>
<script src="//code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript">
$(function(){
$("#btnJson1").click(function(e){
$.ajax({
url: "http://www.itis.gov/ITISWebService/jsonservice/getHierarchyDownFromTSN",
data: {
tsn: "0"
},
cache: true
}).done(function(response){
console.log("JSON response", response);
}).fail(function(){
console.log("JSON fault", arguments);
});
});
$("#btnJsonp1").click(function(e){
$.ajax({
url: "http://www.itis.gov/ITISWebService/jsonservice/getHierarchyDownFromTSN",
data: {
jsonp: "itis_data",
tsn: "0"
},
cache: true,
jsonpCallback: "itis_data",
dataType: "jsonp"
}).done(function(response){
console.log("JSONP response", response);
}).fail(function(){
console.log("JSONP fault", arguments);
});
});
$("#btnJson2").click(function(e){
$.ajax({
url: "http://www.itis.gov/ITISWebService/jsonservice/searchForAnyMatchPaged",
data: {
srchKey: "Zy",
pageSize: 10,
pageNum: 1,
ascend: false
},
cache: true
}).done(function(response){
console.log("JSON response", response);
}).fail(function(){
console.log("JSON fault", arguments);
});
});
$("#btnJsonp2").click(function(e){
$.ajax({
url: "http://www.itis.gov/ITISWebService/jsonservice/searchForAnyMatchPaged",
data: {
jsonp: "itis_data",
srchKey: "Zy",
pageSize: 10,
pageNum: 1,
ascend: false
},
cache: true,
jsonpCallback: "itis_data",
dataType: "jsonp"
}).done(function(response){
console.log("JSONP response", response);
}).fail(function(){
console.log("JSONP fault", arguments);
});
});
});
</script>
</head>
<body>
<div class="page-header">
<h1>test</h1>
</div>
<button id="btnJson1">JSON getHierarchyDownFromTSN</button>
<button id="btnJsonp1">JSONP getHierarchyDownFromTSN</button>
<button id="btnJson2">JSON searchForAnyMatchPaged</button>
<button id="btnJsonp2">JSONP searchForAnyMatchPaged</button>
</body>
</html>