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

问题出在什么地方啊?

<!DOCTYPE  HTML>

<html >

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>函数</title>


<script type="text/javascript">

function comp(a,b)

{var a=parseInt(prompt("输入A值"));

 var b=parseInt(prompt("输入B值"));

    if(a>b){

        return a;

    }

    else if(a<b){

        return b;

    }

    else{

        return "两个值相等"

    }

}

</script>

</head>

<body>

    <input type="button" onClick="comp()" value="录入AB值">

</body>

</html>


正在回答

3 回答

没有打印出来,

var ans=comp()

document.write(ans)

打印出来就可以看见了,结果正确的,代码没有问题

0 回复 有任何疑惑可以回复我~
<!DOCTYPE  HTML><html ><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><title>函数</title><script type="text/javascript">function comp(a,b){var a=parseInt(prompt("输入A值")); var b=parseInt(prompt("输入B值"));    if(a>b){		// 将结果在控制台显示       console.log(a);	   // 将结果在p标签内打印出来	   document.getElementById("num").innerHTML = a;    }    else if(a<b){        console.log(b);		document.getElementById("num").innerHTML = b;    }    else{        console.log("两者相等");		// 将结果打印出来		document.getElementById("num").innerHTML = "两者相等";    }}</script></head><body>    <input type="button" onClick="comp()" value="录入AB值">	<p id="num"></p></body></html>


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

举报

0/150
提交
取消

问题出在什么地方啊?

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