일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 일괄변경
- RabbitMQ
- 문자열자르기
- jQuery
- Selectbox
- smarty
- php
- Python
- docker
- replace
- Eclipse
- TPL
- 천단위
- 부모창
- centos
- TextBox
- Postfix
- 확장자
- SVN
- random
- install
- Oracle
- MySQL
- yum
- ubuntu
- i18n
- 한글 깨짐
- mariadb
- JavaScript
- Today
- Total
목록jQuery (2)
wilson's story
$(document).keyup(function (e) { //console.log("e.keyCode--", e.keyCode) // e.keyCode = 40 : 방향키 아래 // e.keyCode = 38 : 방향키 위 //imageView 레이어 팝업에 'visible' class 값이 있으다면 if($("#imageView").hasClass("visible") === true) { // 키보드 방향키 위, 아래 값이 들어올때 if(e.keyCode == 40 || e.keyCode == 38){ // imageList 목록에 데이터값(li) 이 존재 할때 if($("#imageList").children('li').length >0){ let liData = $("#imageList").chi..
/** * 목적 : 참고사항 글자수 체크 * 매개변수 : 없음 * 반환값 : 없음 * 개정이력 : 없음 */ $('#remaining').each(function(){ var $count = $('#count', this); var $input = $("#refCn"); var maximumCount = $count.text() * 1; var update = function(){ var before = $count.text() * 1; var now = maximumCount - $input.val().length; // 사용자가 입력한 값이 제한 값을 초과하는지를 검사한다. if (now < 0) { var str = $input.val(); $("#refCn").focus(); var inputVa..