<html>
<head>
<title>计算器</title>
<script lauguage="javascript">
function js(x,y,z){
var num1=parseFloat(document.getElementById(x).value,10);
var num2=parseFloat(document.getElementById(y).value,10);
document.getElementById(z).innerHTML=num1+num2;
}
</script>
</head>
<body>
<p>
  <input type="text" ></a></p>
</body>
</html>

相关文章:

  • 2021-12-25
  • 2021-09-23
  • 2022-01-16
  • 2022-03-07
  • 2022-02-10
  • 2022-12-23
猜你喜欢
  • 2022-02-03
  • 2022-12-23
  • 2022-12-23
  • 2021-12-23
  • 2021-12-23
  • 2022-02-03
  • 2021-05-16
相关资源
相似解决方案