|
|
|
|
@ -5,7 +5,23 @@
|
|
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
|
|
<meta name="viewport" content="width=device-width, user-scalable=no">
|
|
|
|
|
|
|
|
|
|
<!-- Cache -->
|
|
|
|
|
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
|
|
|
|
|
<meta http-equiv="Expires" content="0">
|
|
|
|
|
<meta http-equiv="Pragma" content="no-cache">
|
|
|
|
|
|
|
|
|
|
<%
|
|
|
|
|
response.setHeader("Cache-Control", "no-store");
|
|
|
|
|
response.setHeader("Pragma", "no-cache");
|
|
|
|
|
response.setDateHeader("Expires", 0);
|
|
|
|
|
if (request.getProtocol().equals("HTTP/1.1"))
|
|
|
|
|
response.setHeader("Cache-Control", "no-cache");
|
|
|
|
|
%>
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript" src="<c:url value='/js/jquery.min.js' />"></script>
|
|
|
|
|
<title>주소 검색</title>
|
|
|
|
|
<%
|
|
|
|
|
/**
|
|
|
|
|
@ -35,7 +51,7 @@
|
|
|
|
|
String callback = request.getParameter("callback");
|
|
|
|
|
%>
|
|
|
|
|
</head>
|
|
|
|
|
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
|
|
|
|
|
|
|
|
|
|
<script language="javascript">
|
|
|
|
|
// 전역 변수 선언
|
|
|
|
|
var currentKeyword = ""; // 현재 검색어
|
|
|
|
|
|