-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (30 loc) · 1.39 KB
/
Copy pathindex.html
File metadata and controls
31 lines (30 loc) · 1.39 KB
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
<html>
<head>
<title>이력 관리</title>
<script type="text/javascript">
window.onload = function() {
document.getElementById('btn').onclick = function() {
var link = "https://docs.google.com/spreadsheets/d/1dzrBXugvHYfXKImKIiUhll2Y4hv5KqwAGK5U65WV1rc/gviz/tq?tqx=out:html&tq=SELECT+A,B,C,D,E,F,G+WHERE+B+%3D+%27" + document.getElementById("SN").value + "%27&gid=1042965939"
location.href = link;
return false;
};
};
function Enter_Check(){
// 엔터키의 코드는 13입니다.
if(event.keyCode == 13){
var link = "https://docs.google.com/spreadsheets/d/1dzrBXugvHYfXKImKIiUhll2Y4hv5KqwAGK5U65WV1rc/gviz/tq?tqx=out:html&tq=SELECT+A,B,C,D,E,F,G+WHERE+B+%3D+%27" + document.getElementById("SN").value + "%27&gid=1042965939"
location.href = link;
return false;
}
}
</script>
</head>
<body >
<iframe src="#" name="iframe" style="width:1px; height:1px; border:0; visibility:hidden;"></iframe>
<form name="formname" target="iframe">
시리얼 넘버 : <input type="text" id="SN" name="SN" size="12" onkeypress="JavaScript:Enter_Check();">
<input type="button" id="btn" value="확인">
</form>
<a href=https://forms.gle/RQTa96LJmPxVzNrK6><input type=button value="이력입력"></a>
</body>
</html>