Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 명사 분석기
- scala
- Cross
- Lift
- nodejs express
- 명사 뽑아내기
- 주식이야기
- ajax
- 메일왕창보내는법
- Node.js
- 나의 프로젝트
- rss
- 디즈니씨
- C/C++
- 책이야기
- node.js web framework
- express for node.js
- flex3
- ror실행
- docker
- 도커
- iBatis
- php
- php thumbnail
- 베트남어
- 스킨 스쿠버
- Eclipse
- ejb
- 명사 추출기
- 나의 취미
Archives
- Today
- Total
nkdk의 세상
[팁] 파일 업로드 할때 찾아보기 버튼 이미지로 바꾸기 ㅡ 본문
전에 쓰던게 안되서 새로운 걸로 다시!!
<div id="shadow" style="position:absolute;z-index:100;">
<input name="file_name" type="file" style="filter:alpha(opacity:0);width:400;" onChange="document.form1.real_file.value=this.value;this.blur();"></div>
<input name="real_file" type="text" size="50" readonly class="input-01">
<img src="images/btn_find.gif" width="79" height="21" align="absmiddle" onMouseOver="this.style.cursor='hand';"></td>
찾아보기 버튼을 안 보이게 처리하고 그 위에 이미지를 올려놓아서
이미지를 클릭한것같지만 사실은 찾아보기 버튼이 클릭 되게 ㅡ 해주는고,,,,,
this.blur();는 안 먹습니다.
<div id="shadow" style="position:absolute;z-index:100;">
<input name="file_name" type="file" style="filter:alpha(opacity:0);width:400;" onChange="document.form1.real_file.value=this.value;this.blur();"></div>
<input name="real_file" type="text" size="50" readonly class="input-01">
<img src="images/btn_find.gif" width="79" height="21" align="absmiddle" onMouseOver="this.style.cursor='hand';"></td>
찾아보기 버튼을 안 보이게 처리하고 그 위에 이미지를 올려놓아서
이미지를 클릭한것같지만 사실은 찾아보기 버튼이 클릭 되게 ㅡ 해주는고,,,,,
this.blur();는 안 먹습니다.