프로그래밍/Javascript(9)
-
[Javascript] input 숫자 체크
//only ie,chrome function checkNumber(){ if ( ( (96
2015.12.16 -
[Javascript] 브라우저 팝업창 차단여부 확인 스크립트
var popup = window.open(요청 URL,"제목");if(popup == null || popup.screenLeft == 0){alert('팝업 차단 중');} null만 체크 하게 되면 크롬에서는 반응 하지 않아서 고민하던 중 screen크기를 따로 지정 하지 않고 window.open을 사용 할 때는 팝업이 차단되면 크기가 0으로 설정이 되어 체크 항목으로 사용함.
2015.12.16 -
[Javacript] 인터넷 익스플로러(Internet Explorer) console.log 사용하기
익스플로러에서만 에러가 나던 console.log !!!! 해결 방법!! 요렇게만 추가해 주면 잘 나온다~~
2015.12.16 -
[javascript] CKEditor 이미지 팝업 커스텀
쓰잘때기 없는 항목들 다 제거하고 싶을때 config.js에 다음 내용을 추가한다. CKEDITOR.on( 'dialogDefinition', function( ev ){ // Take the dialog name and its definition from the event data. var dialogName = ev.data.name; var dialogDefinition = ev.data.definition; // Check if the definition is from the dialog we're // interested in (the 'image' dialog). This dialog name found using DevTools plugin if ( dialogName == 'image' )..
2015.12.16 -
[javascript] 툴팁(tooltip) 띄우기
나중에 다시 쓸일이 있을것 같아 남겨 놓는다.... div안에서 mouseover 이벤트에 사용하려고 만들어 놨던 소스이다. DisplayTip(이벤트 일어난 객체, 왼쪽 공백크기, 위쪽 공백크기, 내용, tooltip 크기); 이런 식으로 적용해서 쓰면 된다. * IE7 z-index 아... 요놈의 버그 땜시 짜증났네;; tooltip을 보여줄 곳에 최상단 div에 position:relative;
2015.12.16 -
[javascript] 페이징(paging) 처리 코드
스크립트에서 페이징을 처리해야 될 상황이 있어서 그냥 검색.... 괜찬은 소스를 찾아서 추후에 사용할 일이 생길것 같아 남겨 놓는다. 페이징 함수만 따로 파일 첨... var PageUtil = function() // 페이지 처리 함수 { var totalCnt; // 총 건수 var pageRows; // 한 페이지에 출력될 항목 갯수 var curPage; // 현재 페이지 var disPagepCnt;// 화면출력 페이지수 var totalPage; this.setTotalPage = function() { this.totalPage = parseInt((this.totalCnt/this.pageRows)) + (this.totalCnt%this.pageRows>0 ? 1:0); } this.ge..
2015.12.16