javascript 变量未定义 undefined
<!DOCTYPEhtml><htmlxmlns="http://www.w3.org/1999/xhtml"><head><metahttp-equiv="Conten...
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script type="text/javascript">
function f(form) {
var a = document.getElementById("id1").val;
alert(a);
}
</script>
</head>
<body>
<form action="About.aspx">
<label for="id1">Num1</label><input type="text" id="id1" /><br /><br />
<input type="button" onclick="f(this.form)" value="calc"/>
</form>
</body>
</html>
//我输入一个数字后,弹出窗口提示undefined 展开
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title></title>
<script type="text/javascript">
function f(form) {
var a = document.getElementById("id1").val;
alert(a);
}
</script>
</head>
<body>
<form action="About.aspx">
<label for="id1">Num1</label><input type="text" id="id1" /><br /><br />
<input type="button" onclick="f(this.form)" value="calc"/>
</form>
</body>
</html>
//我输入一个数字后,弹出窗口提示undefined 展开
2个回答
展开全部
var a = document.getElementById("id1").val;
你的上面这句应该改为下面这样就好了,取值是value
var a = document.getElementById("id1").value;
追问
你太棒了,我非常 感谢 ,可惜晚了一步
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询