일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 한글
- null
- 문자열
- 이클립스
- checbox
- Oracle
- DB
- MYSQL
- maven
- html
- json
- 스크립트
- @RequestBody
- 네이버스마트 에디터
- php
- 호환성
- 톰캣
- java
- spring form tag
- 날짜
- JSTL
- 전자정부 표준프레임워크
- switch
- SSL
- 오라클
- exception
- 웹 플랫폼 설치 관리자
- RADIO
- jquery
- HTML5
- Today
- Total
목록Script & jQuery (46)
개인적인 정리
크롬에서 bxSlider 가 갑자기 링크이동이 안되는 경우가 발생하였다. 아래 URL 에 나온대로 하니 잘 되는 것 같다. https://support.google.com/chrome/thread/2820924?hl=ko 73 버전 업그래이드 이후로 a 태그 링크가 안들어가집니다. - Google Chrome 고객센터 support.google.com bxSlider 옵션에 아래옵션을 추가해준다. touchEnabled : (navigator.maxTouchPoints > 0) 익스에서는 잘 되고 있었다.
영수증을 출력하기 위해 팝업을 띄워야 하는데.. 익스에서는 아래와 같은 오류가 발생하였다. 당황!!!! 영수증 이와 같이 하니 오류가 발생 아래와 같이 하니 잘 넘어간다. 영수증
datetimepicker 에서 scroll 금지 datetimepicker를 사용중인데.. 스크롤을 통해 날짜가 바뀌는 경우가 발생한다.화면을 아래로 내리다가 스크롤 때문에 날짜가 바뀌는 경우가 종종 발생을 해서 스크롤을 금지할 필요가 생겼다. $('#aaaa').datetimepicker({ lang:'ko', timepicker:false, format:'Y-m-d', scrollMonth : false}); scrollMonth : false 옵션으로 해결 https://xdsoft.net/jqplugins/datetimepicker/
1. 오늘을 선택할 수 없도록 하는 것이 요구사항. $(document).ready(function(){var tomorrowDate = tomorrowDate();$('#exhaustDate').datetimepicker({ lang:'ko', timepicker:false, format:'Y-m-d', minDate: new Date(tomorrowDate)});});function tomorrowDate(){ var tomorrowDate =""; var today = new Date(); var dd = today.getDate()+1; var mm = today.getMonth()+1; //January is 0! var yyyy = today.getFullYear(); if(dd
function todayDate(){var todayDate ="";var today = new Date();var dd = today.getDate();var mm = today.getMonth()+1; //January is 0!var yyyy = today.getFullYear(); if(dd
jquery 로 comma 찍기(jQuery Number Format plugin) 라이브러리 다운로드https://github.com/teamdf/jquery-number 사용법https://www.customd.com/articles/14/jquery-number-format-redux 가볍게 이런식으로도.
document.폼이름.폼요소이름.remove(); document.frm.aaaa.remove();