var boardCommentManage = {
init : function(){
var me = this;
},
};
////////////////Controller//////////////////
window.boardCommentController = {
insertBoardCommentOk : function(resData, statusText){
if(resData.responseCode == '0'){
alert('등록 되었습니다.');
boardCommentManage.getList(document.boardCommentForm.bdSeq.value);
return false;
}else{
alert(resData.data);
}
},
};
-> controller 사용법
boardCommentController.insertBoardCommentOk
'개발 > JavaScript' 카테고리의 다른 글
스크립트에서 getContext() or getContextpath (0) | 2018.02.13 |
---|---|
apply() (0) | 2018.02.13 |
브라우저 별로 다른 버전 js 사용하기 (0) | 2018.02.13 |
js 파일 사용시 한글 깨짐 (0) | 2018.02.13 |
java 웹 실행 순서 (0) | 2018.02.13 |