으헝 ;ㅠ; 돌아다니는 소스 파일
다 안돼.. 구글링이 짱이야
위에껀 바이트 단위로 나온다
IE 거지같애 ㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠㅠ
-IE 외
<script>
function sizeCheck(){
var size = document.getElementById("fileInput").files[0].size;
alert(size);
}
</script>
<body>
<form name="frm">
<input type="file" id="fileInput" />
<input type="button" value="upload" onclick="sizeCheck();">
</form>
-IE
<script>
function getSize()
{
var myFSO = new ActiveXObject("Scripting.FileSystemObject");
var filepath = document.upload.file.value;
var thefile = myFSO.getFile(filepath);
var size = thefile.size;
alert(size + " bytes");
}
</script>
<form name="upload">
<input type="file" name="file">
<input type="button" value="Size?" onClick="getSize();">
</form>
'Programming > JavaScript' 카테고리의 다른 글
동적 폼 추가 삭제 (0) | 2013.10.30 |
---|---|
[jquery] jquery 로 체크박스 리스트의 체크된 값들 가져오기 (0) | 2013.09.13 |
opener (0) | 2012.11.07 |
Array() 함수의 매개 변수에 따른 차이 (0) | 2012.09.19 |
이미지 미리보기 소스 (0) | 2012.09.07 |