ch2-3.htm

来自「jsp基础模块的学习」· HTM 代码 · 共 28 行

HTM
28
字号
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>两个数的加减乘除</title>
<style type="text/css">
<!--HTML表单提供数据,JSP动态网页对数据进行加减乘除,并将结果送到屏幕显示-->
</style></head>
<body bgcolor="#FFFFCC" style="text-align:center">
<form action="ch2-3.jsp" name="form" target="_self"><table width="300" border="0" cellpadding="0" cellspacing="0" bgcolor="#ddeeff">
  <tr align="center">
    <td height="50" colspan="2">简单的计算</td>
    </tr>
  <tr>
    <td width="111" height="50" align="center">数字一:</td>
    <td width="189" height="50" align="center"><input name="n1" type="text" id="n1" size="20"></td>
  </tr>
  <tr>
    <td width="111" height="50" align="center">数字二:</td>
    <td height="50" align="center"><input name="n2" type="text" id="n2" size="20"></td>
  </tr>
  <tr align="center">
    <td height="50" colspan="2"><input type="submit" value="计算"></td>
    </tr>
</table>
</form>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?