c:out
This commit is contained in:
parent
530a2ab246
commit
26ff2294ac
@ -36,10 +36,10 @@
|
||||
<script>
|
||||
|
||||
$( document ).ready(function() {
|
||||
fn_setPageTitle("${pageTitle}");
|
||||
fn_setPageTitle("<c:out value='${pageTitle}'/>");
|
||||
// 메시지 표출
|
||||
if(!gfn_isEmpty('${message}')) {
|
||||
alert("${message}");
|
||||
if(!gfn_isEmpty("<c:out value='${message}'/>")) {
|
||||
alert("<c:out value='${message}'/>");
|
||||
}
|
||||
|
||||
// 검색 수행 이벤트
|
||||
@ -184,10 +184,10 @@ $( document ).ready(function() {
|
||||
<div class="location-box">
|
||||
<ul class="loc">
|
||||
<li>HOME</li>
|
||||
<li class="on">${pageTitle}</li>
|
||||
<li class="on"><c:out value='${pageTitle}'/></li>
|
||||
</ul>
|
||||
<div class="tit">
|
||||
<h2><span>${pageTitle}</span></h2>
|
||||
<h2><span><c:out value='${pageTitle}'/></span></h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="arr"><img src="/images/icon/icon-join-arr2.png" alt=""></div>
|
||||
@ -218,8 +218,8 @@ $( document ).ready(function() {
|
||||
</div>
|
||||
|
||||
<form name="articleForm" id="articleForm" method="post" onsubmit="return false;">
|
||||
<input type="hidden" name="pageSize" id="pageSize" value="${pageSize }" />
|
||||
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="${pageIndex }" />
|
||||
<input type="hidden" name="pageSize" id="pageSize" value="<c:out value='${pageSize }'/>" />
|
||||
<input type="hidden" name="pageIndex" id="pageIndex" title="페이지번호" value="<c:out value='${pageIndex }'/>" />
|
||||
<input type="hidden" name="articleId" id="articleId" title="게시글번호" value="" />
|
||||
</form>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user