일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- HTML5
- 문자열
- switch
- SSL
- maven
- 네이버스마트 에디터
- Oracle
- 오라클
- JSTL
- jquery
- 한글
- json
- 호환성
- DB
- 이클립스
- 날짜
- 스크립트
- exception
- 웹 플랫폼 설치 관리자
- MYSQL
- spring form tag
- @RequestBody
- html
- null
- java
- RADIO
- php
- checbox
- 톰캣
- 전자정부 표준프레임워크
- Today
- Total
목록Script & jQuery (46)
개인적인 정리
if($("input:checkbox[name='deptpersonchk']:checked").length < 1) {alert('뭥미');return false;}
var fileName = $("#uploadfile").val(); fileExt = fileName.slice(fileName.indexOf(".") + 1).toLowerCase(); if(fileName.length < 1){alert("파일을 업로드 하여주세요.");$("#uploadfile").val('');return false;} if(fileExt !="xls"){alert("xls파일만 업로드가 가능합니다.");$("#uploadfile").val('');return false;}
$(this).prop('checked', true);$(this).attr("checked", true);$(this).attr('checked', 'checked'); 3개 중에 하나는 되는 듯... ie9에서 prop을 썼을 경우에 잘 되었는데,ie9에서 ajax 로 데이타를 불러와서 레이어를 띄워 checkbox를 control 하는 경우에는 prop이 되지 않았다. 그런 경우에는 $(this).attr('checked', 'checked'); 이 동작을 해서 다행히도 control 가능했다. $(document).ready(function(){//default 전체 선택$('input:checkbox[name="deptpersonchk"]').each(function (){/*ie9에서 안될 때..
//현재시간var now = new Date(); var year= now.getFullYear(); var mon = (now.getMonth()+1)>9 ? ''+(now.getMonth()+1) : '0'+(now.getMonth()+1); var day = now.getDate()>9 ? ''+now.getDate() : '0'+now.getDate(); var hour = now.getHours()>9 ? ''+now.getHours() : '0'+now.getHours(); var min = now.getMinutes()>9 ? ''+now.getMinutes() : '0'+now.getMinutes(); var sec = now.getSeconds()>9 ? ''+now.getSeconds(..
1. var sendValue= $('input:radio[name="send"]:checked').val(); 2. $('input:radio[name="aaaaa"]').bind('click', function(){//alert($(this).val());if($(this).val() == "0"){ //display:none;$('#send_date_area').css({"display":"none"});}else {//display:block;$('#send_date_area').css({"display":"block"})}});