336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
<script type="text/javascript">
$(function () {
$('#btn-upload').click(function (e) {
e.preventDefault();
$('#file').click();
});
});
function changeValue(obj){
alert(obj.value);
}
</script>
<style type="text/css">
#file { display:none; }
</style>
<div>
<input type="file" id="file" name="file" onchange="changeValue(this)"/>
<button type="button" id="btn-upload">Image</button>
</div>
참조 : Input TYPE=“File” hide the input and leave the button?
'프로그램 > jQuery' 카테고리의 다른 글
브라우저 종류 및 버전 체크 (0) | 2014.08.07 |
---|---|
document.getElementById() 처럼 DOM 객체 얻기 (0) | 2014.07.19 |
select box 값 변경, 목록 변경 (0) | 2014.04.12 |
[plugin] Dynatree - JavaScript dynamic tree view plugin (0) | 2014.04.07 |
슬라이드 쇼 (0) | 2014.04.06 |