Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 정규식
- junit
- 와일드카드
- jquery
- 이클립스
- php
- Linux
- SeLinux
- 톰캣
- properties
- 안드로이드
- ajax
- File
- tomcat
- 리눅스
- larravel
- html
- input
- Android
- javascript
- CentOS
- curl
- JSON
- laravel
- DB
- java
- NetBeans
- Spring
- error
- MySQL
Archives
- Today
- Total
목록input (2)
합쭈기 programming
[jQuery] checkbox checked 적용
check box 타입의 input 값을 보낼때 checked 값이 올라가지 않는 경우가 있는데 attr로 checked를 조작할 때 그렇다. attribute가 아니라 property를 조작해야 한다. $(input).attr('checked', true)를 >> $(input).prop('checked', true)로 바꿔주면 정상 동작한다.
Javascript
2015. 7. 29. 15:00
input 태그 file type 스타일
#fileWrap { width: 93px; height: 28px; background: url('../../images/btn/add_pic.gif') 0 0 no-repeat; border:none; overflow:hidden; } #fileWrap:hover { cursor: pointer; } #personFile{ margin-left:-145px; opacity:0.0; -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0); }
css
2015. 4. 10. 09:20