为什么我不能 aleart document.getElementById("text1").value 里面的内容

2015-04-03 02:41:13 +08:00
 cuthead
<!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)不工作
2513 次点击
所在节点    JavaScript
4 条回复
cuthead
2015-04-03 02:45:36 +08:00
alert(document.getElementById("text1").value)不工作,alert("hello")工作,什么原因?
tux
2015-04-03 03:37:37 +08:00
因为alert的时候,要alert出来的东西还没有加载,把alert放在要alert的东西底下就好了.
cuthead
2015-04-03 11:58:33 +08:00
@tux 感谢,问题解决了
kzzhr
2015-04-04 09:23:34 +08:00
JS非定义代码都写在 window.onload 里面

这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。

https://www.v2ex.com/t/181246

V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。

V2EX is a community of developers, designers and creative people.

© 2021 V2EX