평수를 제곱미터로 제곱미터를 평수로 계산해주는 소스

평수를 제곱미터로 제곱미터를 평수로 계산해주는 소스

다온아빠 0 10176

<head> 와 </head>
<script>
<!--
function calculator(chk){
  if(chk==1){
   document.getElementById('cal2').value = parseFloat(document.getElementById('cal1').value) * 3.3058;
  }
  else {
      document.getElementById('cal1').value = parseFloat(document.getElementById('cal2').value) / 3.3058;
  }
}
//-->
</script>


<body> 와 </body>
<input type="text" id="cal1" onkeyup="calculator(1);">평 - <input type="text" id="cal2" onkeyup="calculator(2);">m2
 


미리보기





0 Comments