<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript">
function larry()
{
var chang=document.getElementById("text1").value;
var kuan=document.getElementById("text2").value;
var inch=document.getElementById("text3").value;
var chang2=chang*chang;
var kuan2=kuan*kuan;
var go=kuan2+chang2;
var go2=Math.sqrt(go);
var ppi=go2/inch;
document.getElementById("text4").value=ppi;
}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<label>
<input type="text" id="text1" value="长度" />
</label>
<p>
<label>
<input type="text" id="text2" value="宽度" />
</label>
</p>
<p>
<label>
<input type="text" id="text3" value="尺寸" />
</label>
</p>
<p>
<label>
<input type="text" id="text4" value="PPI" />
</label>
</p>
<p>
<label>
<input type="button" id="button1" onclick="larry()"
value="计算" />
</label>
</p>
</form>
</body>
</html>
例如我要alert document.getElementById("text1").value;变量里面的内容,我直接alert (chang)不工作
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/181246
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.