일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Form Stuff
- 안드로이드2.0
- 영어
- 아이폰 바탕화면
- android
- 구글안드로이드
- 하루한마디영어
- 안드로이드2.0개발
- 안드로이드 바탕화면
- 하루 한마디 영어
- 안드로이드 2.0 개발
- SKY 시리우스
- 스카이 안드로이드폰 시리우스 K양 동영상
- 구글 안드로이드
- 스카이 안드로이드폰 시리우스
- 안드로이드 개발 강좌
- 인기있는 블로그 만들기
- 안드로이드개발
- 안드로이드 개발 2.0 강좌
- 아이폰 배경화면
- 안드로이드 개발
- objective-c
- 스마트폰 배경화면
- MapView
- 안드로이드 배경화면
- 구글 안드로이드 개발
- 안드로이드폰
- sky 시리우스폰
- 안드로이드 개발 2.0
- 안드로이드
- Today
- Total
moozi
read.jsp 본문
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ include file="../include/header.jsp" %>
<!-- 조회 ------------------------------------->
<section class="content">
<div class="row">
<div class="col-md-12">
<div class="box">
<div class="box-header with-border">
<h3 class="box-title">글내용</h3>
</div>
<div class="box-body">
<!-- 조회 폼 ------------------------------------->
<form role="form" method="post">
<input type="hidden" name="bno" value="${boardVO.bno}">
<div class="box-body">
<div class="form-group">
<label>Title</label>
<input type="text" name="title" value="${boardVO.title}" class="form-control" readonly>
</div>
<div class="form-group">
<label>Content</label>
<textarea class="form-control" name="content" readonly>${boardVO.content}</textarea>
</div>
<div class="form-group">
<label>Writer</label>
<input type="text" name="writer" value="${boardVO.writer}" class="form-control" readonly>
</div>
</div>
</form>
<!-- 조회 폼.끝.---------------------------------->
</div>
<div class="box-footer">
<button type="submit" id="btnModify" class="btn btn-warning">수정</button>
<button type="submit" id="btnRemove" class="btn btn-warning">삭제</button>
<button type="submit" id="btnListAll" class="btn btn-warning">목록</button>
<!-- <a href="/board/listAll" class="btn btn-warning">목록</a> -->
<script>
$(document).ready(function(){
var formObj=$("form[role='form']");
$("#btnModify").on("click",function(){
formObj.attr("action","/board/modify");
formObj.attr("method","get");
formObj.submit();
});
$("#btnRemove").on("click",function(){
formObj.attr("action","/board/remove");
formObj.submit();
});
$("#btnListAll").on("click",function(){
self.location="/board/listAll";
});
});
</script>
</div>
</div>
</div>
</div>
</section>
<!-- 조회.끝.---------------------------------->
<%@include file="../include/footer.jsp" %>
'TIS_2017 > 응용sw_1기' 카테고리의 다른 글
4/11 boardExample01 (0) | 2017.04.11 |
---|---|
스프링연습문제01 (0) | 2017.04.10 |
4/10 BoardExample01 (0) | 2017.04.10 |
Spring MyBatis 설정 파일 (0) | 2017.04.06 |
프로젝트 개발분야 (15) | 2017.04.05 |