<HTML>
<HEAD>
<script>
var bytevalue=0
function calculate(){
var invalue=document.bandwidth.original.value
var selectunit=document.bandwidth.units.options[document.bandwidth.units.selectedIndex].value
if (selectunit=="Bytes")
bytevalue=invalue
else if (selectunit=="Kb")
bytevalue=invalue*1024
else if (selectunit=="Mb")
bytevalue=invalue*1024*1024
else if (selectunit=="Gb")
bytevalue=invalue*1024*1024*1024
alert (invalue+" "+selectunit+" is equal to:\n\n- "+bytevalue+" Bytes\n- "+Math.round(bytevalue/1024)+" Kb\n- "+Math.round(bytevalue/1024/1024)+" Mb\n- "+Math.round(bytevalue/1024/1024/1024)+" Gb\n")
}
</script>
</HEAD>
<BODY>
<form name="bandwidth">
<p align=center><input type="text" name="original" size="20" value=1024> <select size="1" name="units">
<option value="Bytes">Bytes</option>
<option value="Kb">Kb</option>
<option value="Mb">Mb</option>
<option value="Gb">Gb</option>
</select> <input type="button" value="Calculate" name="B1" onClick="calculate()" style="border:solid 1; font-family:Tahoma,Verdana,굴림; font-size:8pt; color:white; background-color:black; height:21px"></p>
</form>
</body>
</HTML>
<HEAD>
<script>
var bytevalue=0
function calculate(){
var invalue=document.bandwidth.original.value
var selectunit=document.bandwidth.units.options[document.bandwidth.units.selectedIndex].value
if (selectunit=="Bytes")
bytevalue=invalue
else if (selectunit=="Kb")
bytevalue=invalue*1024
else if (selectunit=="Mb")
bytevalue=invalue*1024*1024
else if (selectunit=="Gb")
bytevalue=invalue*1024*1024*1024
alert (invalue+" "+selectunit+" is equal to:\n\n- "+bytevalue+" Bytes\n- "+Math.round(bytevalue/1024)+" Kb\n- "+Math.round(bytevalue/1024/1024)+" Mb\n- "+Math.round(bytevalue/1024/1024/1024)+" Gb\n")
}
</script>
</HEAD>
<BODY>
<form name="bandwidth">
<p align=center><input type="text" name="original" size="20" value=1024> <select size="1" name="units">
<option value="Bytes">Bytes</option>
<option value="Kb">Kb</option>
<option value="Mb">Mb</option>
<option value="Gb">Gb</option>
</select> <input type="button" value="Calculate" name="B1" onClick="calculate()" style="border:solid 1; font-family:Tahoma,Verdana,굴림; font-size:8pt; color:white; background-color:black; height:21px"></p>
</form>
</body>
</HTML>
반응형
'인터넷정보' 카테고리의 다른 글
정규식을 사용한 이메일 주소 체크하기 (0) | 2007.10.17 |
---|---|
일정 기간 동안 하루에 한번 팝업창 띄우기 (0) | 2007.10.17 |
일정 기간 동안 하루에 한번 팝업창 띄우기 (0) | 2007.10.17 |
특정 키보드키 제어하기 (0) | 2007.10.17 |
특정 키보드키 제어하기 (0) | 2007.10.17 |
파일 용량 계산 (Gb / Mb / Kb / Bytes) (0) | 2007.10.17 |
이미지 시간 지정해서 다른 이미지로 바뀜 (0) | 2007.10.17 |
이미지 시간 지정해서 다른 이미지로 바뀜 (0) | 2007.10.17 |
gray 컬러 모음 - 색상표, 컬러 코드 (0) | 2007.10.17 |
gray 컬러 모음 - 색상표, 컬러 코드 (0) | 2007.10.17 |