웹접근성 - 보완작업
This commit is contained in:
parent
5bf5534cdb
commit
9a8883bfa9
@ -51,7 +51,7 @@
|
|||||||
<!-- SmartEditor : 종료 -->
|
<!-- SmartEditor : 종료 -->
|
||||||
|
|
||||||
|
|
||||||
<script type="text/javaScript">
|
<script>
|
||||||
var myDropzone = null; <% // 파일드롭다운 객체 %>
|
var myDropzone = null; <% // 파일드롭다운 객체 %>
|
||||||
var fileList = new Array(); <% // 업로드된 파일 정보 %>
|
var fileList = new Array(); <% // 업로드된 파일 정보 %>
|
||||||
var delFileList = new Array(); <% // 삭제된 파일 정보 %>
|
var delFileList = new Array(); <% // 삭제된 파일 정보 %>
|
||||||
|
|||||||
@ -1,16 +1,16 @@
|
|||||||
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<title>alertPage</title>
|
<title>alertPage</title>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script type="text/javascript">
|
<script>
|
||||||
var message = "${msg}";
|
var message = "${msg}";
|
||||||
var url = "${url}";
|
var url = "${url}";
|
||||||
alert(message);
|
alert(message);
|
||||||
document.location.href = url;
|
document.location.href = url;
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
@ -35,7 +35,7 @@ function fn_getMemberCard() {
|
|||||||
<h2 class="blind">헤더영역</h2>
|
<h2 class="blind">헤더영역</h2>
|
||||||
<div class="inner">
|
<div class="inner">
|
||||||
|
|
||||||
<h1><a href="javascript:void(0)" onclick="javascript:location.href='/';"><img src="/images/img/img-logo.svg" alt="로고"><span class="title-1" name="siteCommonTitle" id="siteCommonTitle">${councilNm}</span><span class="title-2">소장자료관</span></a></h1>
|
<h1><a href="javascript:void(0)" onclick="javascript:location.href='/';"><img src="/images/img/img-logo.svg" alt="로고"><span class="title-1" id="siteCommonTitle">${councilNm}</span><span class="title-2">소장자료관</span></a></h1>
|
||||||
|
|
||||||
<div class="search-wrap">
|
<div class="search-wrap">
|
||||||
<h2 class="blind">검색</h2>
|
<h2 class="blind">검색</h2>
|
||||||
|
|||||||
@ -5,7 +5,7 @@
|
|||||||
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
|
||||||
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
<%@ taglib prefix="sec" uri="http://www.springframework.org/security/tags"%>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script>
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
$("#DIV_PAGE_MAIN").removeClass("sub");
|
$("#DIV_PAGE_MAIN").removeClass("sub");
|
||||||
|
|||||||
@ -37,7 +37,7 @@ String councilNm = (String)session.getAttribute("councilNm");
|
|||||||
%>
|
%>
|
||||||
|
|
||||||
<c:set var="pageTitle">인사말 </c:set>
|
<c:set var="pageTitle">인사말 </c:set>
|
||||||
<script type="text/javascript">
|
<script>
|
||||||
<!--
|
<!--
|
||||||
|
|
||||||
$( document ).ready(function() {
|
$( document ).ready(function() {
|
||||||
|
|||||||
@ -8,8 +8,7 @@
|
|||||||
<html lang="ko">
|
<html lang="ko">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<meta name="format-detection" content="telephone=no" />
|
<meta name="format-detection" content="telephone=no" />
|
||||||
|
|
||||||
@ -30,7 +29,7 @@
|
|||||||
|
|
||||||
<title>소장자료관</title>
|
<title>소장자료관</title>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script>
|
||||||
// 제목 설정
|
// 제목 설정
|
||||||
function fn_setPageTitle(title) {
|
function fn_setPageTitle(title) {
|
||||||
document.title = "소장자료관 - " + title;
|
document.title = "소장자료관 - " + title;
|
||||||
@ -42,7 +41,7 @@ function fn_setPageTitle(title) {
|
|||||||
<body>
|
<body>
|
||||||
|
|
||||||
<!-- <div class="wrap sub"> sub는 서브페이지 -->
|
<!-- <div class="wrap sub"> sub는 서브페이지 -->
|
||||||
<div id="DIV_PAGE_MAIN" name="DIV_PAGE_MAIN" class="wrap sub">
|
<div id="DIV_PAGE_MAIN" class="wrap sub">
|
||||||
|
|
||||||
<!-- 헤더 -->
|
<!-- 헤더 -->
|
||||||
<header id="header">
|
<header id="header">
|
||||||
@ -64,7 +63,7 @@ function fn_setPageTitle(title) {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- Layer Popup -->
|
<!-- Layer Popup -->
|
||||||
<div id="NLIB_LAYER_POPUP" name="NLIB_LAYER_POPUP" style="display:block;">
|
<div id="NLIB_LAYER_POPUP" style="display:block;">
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user