input file 버튼 커스터마이징하기 > html

본문 바로가기
사이트 내 전체검색

html

input file 버튼 커스터마이징하기

페이지 정보

작성자 서방님 댓글 0건 조회 67회 작성일 24-01-09 15:05

본문

<script type="text/javascript">
<!--
$(function() {
	// 파일 업로드
	var fileTarget = $(".filebox .upload-hidden");
	fileTarget.on("change", function(){
		if (window.FileReader) {
			var filename = $(this)[0].files[0].name;
		} else {
			var filename = $(this).val().split("/").pop().split("\\").pop();
		}
		$(this).siblings(".upload-name").val(filename);
	});
});
//-->
</script>


<style type="text/css">
/* 파일 업로드 */
.filebox input[type="file"] {position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0:}
.filebox label {display:inline-block; padding:.5em .75em; color:#999; font-size:inherit; line-height:normal; vertical-align:middle; background-color:#fdfdfd; cursor:pointer; border:1px solid #ebebeb; border-bottom-color:#e2e2e2; border-radius:.25em:}
.filebox .upload-name {display:inline-block; padding:.5em .75em; font-size:inherit; font-family:inherit; line-height:normal; vertical-align:middle; background-color:#f5f5f5; border:1px solid #ebebeb; border-bottom-color:#e2e2e2; border-radius:.25em; -webkit-appearance:none; -moz-appearance:none; appearance:none:}
.filebox.bs3-primary label {color:#fff; background-color:#337ab7; border-color:#2e6da4:}
.file_submit {padding:0 5px; height:30px; border:0; color:#fff; background:#ff3061; vertical-align:middle; cursor:pointer;}
</style>

<div class="filebox bs3-primary">
	<input class="upload-name" value="파일선택" disabled="disabled">
	<label for="upload">파일 (*.xls) 선택</label>
	<input type="file" id="upload" name="upload" class="upload-hidden">

	 <input type="submit" value="업로드 하기" class="file_submit">
</div>

 

댓글목록

등록된 댓글이 없습니다.

Total 323건 1 페이지
게시물 검색

회원로그인

접속자집계

오늘
17
어제
51
최대
1,347
전체
153,647
Latest Crypto Fear & Greed Index

그누보드5
Copyright © 서방님.kr All rights reserved.