game_home.ejs
1.8 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<script language="JavaScript">
function Ajax(index){
$.ajax({
url: '/game', // postTest 주소로
async: true, // 동기화 - 서버에서 반응이 올때까지 기다림
type: 'POST', // POST 방식으로
data: {
test: index // 텍스트필드에 입력한 값을 test라는 이름으로 보냄
},
dataType: 'json'
});
}
function Change(num) {
if(num==1){
document.getElementById("btn1").innerText="선택지1-1";
document.getElementById("btn2").innerText="선택지2-1";
Ajax(1);
}
else{
document.getElementById("btn1").innerText="선택지1-1";
document.getElementById("btn2").innerText="선택지2-1";
Ajax(2);
}
/*
var a=document.getElementById("btn").innerText;
if(a=="뭘보냐"){
document.getElementById("btn1").innerText="선택지1-1";
document.getElementById("btn2").innerText="선택지1-1";
Ajax(1);
}
else if(a=="안봤는데?"){
document.getElementById("btn1").innerText="선택지1-2";
Ajax(2);
}
else if(a=="본거다안다"){
document.getElementById("btn2").innerText="선택지1-3";
Ajax(3);
}*/
}
</script>
<button id="btn1" onclick="Change(1)">선택지 1</button>
<button id="btn2" onclick="Change(2)">선택지 2</button>
</body>
</html>