フォーラム@nifty | フォーラム・サークル | サイトマップ | ヘルプ |
掲示板 コラム お役立ち イベント リンク   | FHPGサイトマップ | お問い合わせ |
TOP > お役立ち > JavaScriptのおもちゃ箱 > JavaScript Calculator  

JavaScript Calculator

原案:臥龍 鳳雛 氏 (2000/04/01 登録)

 いわゆる電卓です。

表示サンプル

ソース記述内容

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html lang="ja">
<head>
<title>JavaScript Calculator</title>
<script type="text/javascript">
<!--
var disp = ""
function calc(key) {
  if (key == 'C') {
    disp = ""
  }
  else if (key == "=") {
    disp = eval(disp)
  }
  else if (key == 'rev') {
    disp = -eval(disp)
  }
  else {
    disp += key
  }
  document.DispForm.DIPLAY.value = disp
}
// -->
</script>
</head>
</body>
<table border="0" align="center">
  <tr>
    <td>
      <form name="DispForm">
        <input type="text" name="DIPLAY" value="0" size="30" style="text-align:right">
        <table border="0" align="center">
          <tr>
            <td><input name="button" type="button" onClick="calc('7')" value="7"></td>
            <td><input name="button" type="button" onClick="calc('8')" value="8"></td>
            <td><input name="button" type="button" onClick="calc('9')" value="9"></td>
            <td><input name="button" type="button" onClick="calc('+')" value="+"></td>
          </tr>
          <tr>
            <td><input name="button" type="button" onClick="calc('4')" value="4"></td>
            <td><input name="button" type="button" onClick="calc('5')" value="5"></td>
            <td><input name="button" type="button" onClick="calc('6')" value="6"></td>
            <td><input name="button" type="button" onClick="calc('-')" value="−"></td>
          </tr>
          <tr>
            <td><input name="button" type="button" onClick="calc('1')" value="1"></td>
            <td><input name="button" type="button" onClick="calc('2')" value="2"></td>
            <td><input name="button" type="button" onClick="calc('3')" value="3"></td>
            <td><input name="button" type="button" onClick="calc('*')" value="×"></td>
          </tr>
          <tr>
            <td><input name="button" type="button" onClick="calc('0')" value="0"></td>
            <td><input name="button" type="button" onClick="calc('.')" value="."></td>
            <td><input name="button" type="button" onClick="calc('C')" value="C"></td>
            <td><input name="button" type="button" onClick="calc('/')" value="÷"></td>
          </tr>
          <tr>
            <td><input name="button" type="button" onClick="calc('(')" value="("></td>
            <td><input name="button" type="button" onClick="calc(')')" value=")"></td>
            <td><input name="button" type="button" onClick="calc('rev')" value="rev"></td>
            <td><input name="button" type="button" onClick="calc('=')" value="="></td>
          </tr>
        </table>
      </form>
    </td>
  </tr>
</table>
</body>
</html>
個人情報保護ポリシー
Copyright© NIFTY 2006 All Rights Reserved.
Copyright© FHPG 2006 All Rights Reserved.