ROOT
ROOT
文章目录
  1. 乘法运算
  2. 加法运算
  3. 网页源代码 (乘法)

简易 JavaScript 计算器

乘法运算

* =

加法运算

+ =

网页源代码 (乘法)

<html>
<head>
    <meta charset="utf-8">
    <title>JavaScript 乘法 </title>
    <script language="JavaScript">
        function f() {
           document.x.r.value = document.x.a.value*document.x.b.value;
        }
     </script>
</head>
<body>
    <center><p>
        <h1> 乘法运算 </h1></p>
    <form name="x">
        <p><input type="text" name="a" size="5" maxLength="5" value="1"/> *
        <input type="text" name="b" size="5" maxLength="5" value="1"/>
        = <input type="text" name="r" size="10" value="1" readonly/> </p>
        <p><input type="button" value=" 计算 " onClick="f()"/> </p>
    </form></center>
</body>
</html>
支持一下
扫一扫,支持Netcan
  • 微信扫一扫
  • 支付宝扫一扫