-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathread.html
27 lines (22 loc) · 932 Bytes
/
read.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
<html>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
NO: <input type="text" id="numberInput"><br><br>
<input type="button" value="查詢" onclick="Search()">
<script type="text/javascript">
function Search(){
$.get("https://script.google.com/macros/s/AKfycby8FMMIJQkm0lAqUzyP_epJiw1dP3JMZ8VdiTGHckpfEVpecs-N/exec",
{
number:$('#numberInput').val(),
tab:"blog"
},
function (data) {
console.log("the result is :"+data);
document.write("--------------------------<br>");
document.write("No.,Name,Score <br>"+data+"<br>");
document.write("--------------------------<br>");
});
}
</script>
</body>
</html>