test.jsp
来自「java的一系列产品中包括jsme,jmse,j2ee,本文件提供j2ee实现的」· JSP 代码 · 共 33 行
JSP
33 行
<html>
<head></head>
<script language="JavaScript">
<!--
function compute(length,width){
var SquarArea;
SquarArea=length*width;
document.write("SquarArea="+SquarArea+"<br>");
with(Math){
foo=PI;
bax=sin(foo);
bay= round(foo);
ff=20;
}
document.write("Math.foo="+foo+"<br>");
document.write("Math.bax="+bax+"<br>");
document.write("Math.ff="+ff+"<br>");
document.write("Math.E="+Math.E+"<br>");
//return true;
}
//-->
</script>
<body>
<p>input length and width,to get square area.
<form name="form1">
<input type="text" name="Len" value="40" size=5 >
<input type="text" name="Width" value="20" size=5 >
<INPUT type="button" name="button1" value="Calculate"
onClick="compute(form1.Len.value,form1.Width.value)">
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?