Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
bbalganjjm committed Jun 21, 2024
1 parent 882ee68 commit 0fb62c4
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/main/resources/static/html/com/app/sample/dev-guide.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,21 +97,20 @@

```javascript
<style>
/* View(CSS) - 생략 가능하고 이 파일의 View 에만 스타일을 적용하고 싶을 때만 추가 합니다. */
.page-id {
/* CSS 셀렉터를 선언할 때 .page-id #target { } 처럼 .page-id 를 먼저 추가해야 합니다. 그렇지 않으면 다른 페이지에도 영향을 미칩니다. */
.${page-id} {

}
</style>

<article class="page-id">
<article class="${page-id}">
<!-- article 태그에 class 속성으로 page-id를 지정합니다. -->
</article>

<script type="text/javascript">
(function() {

// N.cont 함수 실행시 View 의 class 속성으로 정의 된 "page-id" 값을 N 의 인수로 넣어 줍니다.
var cont = N(".page-id").cont({
var cont = N(".${page-id}").cont({
init : function(view, request) {
// "init" 함수는 페이지 로드가 완료되면 자동으로 실행됩니다.
}
Expand Down

0 comments on commit 0fb62c4

Please sign in to comment.