일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ajax
- php
- input
- Linux
- 와일드카드
- 리눅스
- 안드로이드
- MySQL
- curl
- error
- JSON
- 정규식
- junit
- html
- Android
- javascript
- File
- Spring
- java
- laravel
- properties
- 톰캣
- CentOS
- DB
- SeLinux
- 이클립스
- NetBeans
- larravel
- jquery
- tomcat
- Today
- Total
목록jquery (7)
합쭈기 programming
ajaxForm을 사용할 때 multipart로 파일 전송 시 json 파일 다운로드가 뜬다. PHP를 기준으로 content-type이 multipart일 때 response header를 $this->header('Content-Type', 'text/json'); 이렇게 해주고 script에서는 파일 전송일 때 $.parseJSON으로 파싱해서 사용한다.
var left = $(window).scrollLeft() + ($(window).width() - {창 width}) / 2; var top = $(window).scrollTop() + ($(window).height() - {창 height}) / 2; 위에 top, left 값을 window.open 옵션에 준다 듀얼 모니터일때 오른쪽 모니터에 브라우저가 있으면 left가 안 먹히는듯 보인다. 왼쪽 모니터에서 확인하자..
$(this).text($(this).text().split(/(?=(?:\d{3})+(?:\.|$))/g).join(','));
ajax 옵션에서 jQuery 1.9.0 미만에서는 type : 'GET' 이고 이상에서는 method : 'GET' 을 사용한다. type 옵션은 모두 적용되지만 method는 jQuery 1.9.0 미만에서 사용 시 동작하지 않으니 주의해야함
check box 타입의 input 값을 보낼때 checked 값이 올라가지 않는 경우가 있는데 attr로 checked를 조작할 때 그렇다. attribute가 아니라 property를 조작해야 한다. $(input).attr('checked', true)를 >> $(input).prop('checked', true)로 바꿔주면 정상 동작한다.
http://jqueryui.com/