Notice
Recent Posts
Recent Comments
Link
이야기앱 세상
자바스크립트 - input type=file 이미지 버튼으로 교체하기 본문
<input type="file"> 사용시 이미지 버튼으로 교체하는 방법
<script type="text/javascript">
function setPath(obj,id){
document.getElementById(id).value = obj.value;
}
</script>
<input id="visualFileBox" readonly="readonly" style="width:232px;" />
<span id="btnFileUpload" style="position:absolute; width:83px; height:21px; overflow:hidden;">
<input type="file" id="image" name="image" onchange="setPath(this, 'visualFileBox');"
style="position: absolute; right: 0; top: 0; filter: alpha(opacity = 0); cursor: pointer;" />
<img id="btnImage" src="이미지경로" style="margin:3px 0 3px 0; vertical-align:bottom;" />
</span>
반응형
'IT > JavaScript' 카테고리의 다른 글
자바스크립트 - checkbox, radio 에서 정보 읽어 올 때 주의사항 (0) | 2016.03.24 |
---|---|
자바스크립트 - json2.js 파일을 이용한 json 객체 생성 (0) | 2016.03.24 |
자바스크립트 - json 형식의 텍스트 데이터를 객체로 생성하기 (0) | 2016.03.24 |
자바스크립 - js 파일 압축하기 (0) | 2016.03.24 |
자바스크립트 - enter key 동작 막기 (0) | 2016.03.24 |
Comments