김명주

Create inf home, inf result html

<html>
<head>
<title>TESTESTEST</title>
<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>
<input type="text" id="name" />
<input type="submit" onClick="location.href='result'" id="OK"/>
<script>
$("#OK").click(function(){ // OK 버튼 클릭하면
$.ajax({
url: '/inf/result', // postTest 주소로
async: true, // 동기화 - 서버에서 반응이 올때까지 기다림
type: 'POST', // POST 방식으로
data: {
test: $("#name").val() // 텍스트필드에 입력한 값을 test라는 이름으로 보냄
},
dataType: 'json'
});
});
</script>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Hello World!</title>
<!--
<link rel="stylesheet" href="/css/master.css" >
-->
</head>
<body>
<h1>유저 정보 출력</h1><br>
<script>
</script>
<span class="aid">USER ID<%= aid %></span><br>
<span class="name">NAME<%= name %></span><br>
<span class="level">LEVEL<%= level %></span>
</body>
</html>
\ No newline at end of file