为了账号安全,请及时绑定邮箱和手机立即绑定

JS获取输入框的值

566a6c8b000104db05000536.jpg

566a6c8b00012f7604280386.jpg

<!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=utf-8" />
<title>成绩查询</title>
<script type="text/javascript">
function aa()
{
	var num = document.getElementById("con").value;
	if(num>=60)
			alert("JavaScript考核通过!");
	}else
	{
		alert("哈哈哈哈你并没有通过考核!")
	}
}
</script>

</head>
<body>
	<form>
		<label>
			<a style="font-family:Microsoft Yahei">成绩:</a>
		</label>
		<input type="text"  id="con"/>
		<input type="button" value="查询" onclick="aa()"/>
	</form>

</body>
</html>

我输入之后 按了按键没有弹出alert

正在回答

5 回答

第一个错误://你右括号用了中文格式

var num = document.getElementById("con").value;

第二个错误:少了左{

if(num>=60)

第三个错误:少了分号

alert("哈哈哈哈你并没有通过考核!")


3 回复 有任何疑惑可以回复我~
#1

mosci

你要是不采纳我为最佳答案真的是白瞎了我这双眼找你的错误 = =
2015-12-11 回复 有任何疑惑可以回复我~
#2

慕冬雪 回复 mosci

这个回答不错,+1
2015-12-11 回复 有任何疑惑可以回复我~
#3

懒懒萌萌的 回复 mosci

似乎有些急功近利
2015-12-11 回复 有任何疑惑可以回复我~
#4

有事烧纸 提问者

厉害...我找了好久 然后又网上搜索了检查了语法找不到错误 分号是无所谓的~辛苦![双手合十] 谢谢!
2015-12-11 回复 有任何疑惑可以回复我~
查看1条回复
<!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=utf-8" />
<title>成绩查询</title>
<script type="text/javascript">
function aa()
{
    var num = document.getElementById("con").value;
    if(num>=60){
            alert("JavaScript考核通过!");
    }else
    {
        alert("哈哈哈哈你并没有通过考核!")
    }
}
</script>
 
</head>
<body>
    <form>
        <label>
            <a style="font-family:Microsoft Yahei">成绩:</a>
        </label>
        <input type="text"  id="con"/>
        <input type="button" value="查询" onclick="aa()"/>
    </form>
 
</body>
</html>


0 回复 有任何疑惑可以回复我~

获取他的value

0 回复 有任何疑惑可以回复我~
<!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=utf-8" />
<title>成绩查询</title>
<script type="text/javascript">
function aa(){
    var num = document.getElementById("con").value;
    if(num>=60){
        alert("JavaScript考核通过!");
    }else{
        alert("哈哈哈哈你并没有通过考核!")
    }
}
</script>
 
</head>
<body>
    <form>
        <label>
            <a style="font-family:Microsoft Yahei">成绩:</a>
        </label>
        <input type="text"  id="con"/>
        <input type="button" value="查询" onclick="aa()"/>
    </form>
 
</body>
</html>

试试这个,仔细对比下,你就知道哪儿错了

0 回复 有任何疑惑可以回复我~

代码if(num>=60)后面少了一个 “{”

0 回复 有任何疑惑可以回复我~
#1

有事烧纸 提问者

加过之后按键也没有作用 是不是<body>里哪一句的语法错了
2015-12-11 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

JS获取输入框的值

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信