//Google AdSense

html을 작업할 때 php, asp, jsp 등은 인클루드가 가능하지만 html 파일은 include가 안된다고 알려져 있다!

프로젝트 화면 구성 중에 게시물 내용 영역 하단에 댓글 리스트 페이지를 include할 계획이 있었기 때문에 당황스러웠다.

하지만 jquery의 load를 통해 해결했다!

jquery를 import 해준 후

<script type="text/javascript">

$(document).ready( function() {
	$("#reply").load("/companyComment");
});

</script>


<div id="reply"> </div>

div id가 reply인 영역에 /companyComment 화면이 불려오게 된다! (controller를 사용하여 맵핑함~)

 

+ Recent posts