function bj(numa,numb){
if(numa>numb){
alert(numa);
}
else if(numa==numb){
alert(numa,numb);
}
else{
alert(numb);
}
}
我的意思是,在上述函数中,当两个数字相等时,弹出窗口会出现两个值。我能这样做吗?
答案 0 :(得分:1)
根据您要显示的内容,您可以执行以下操作
function bj(numa,numb){
if(numa>numb){
alert(numa);
}
else if(numa==numb){
alert(numa + " = " + numb);
}
else{
alert(numb);
}
}
如果numa和numb是12
,这将显示以下内容12 = 12
答案 1 :(得分:1)
你可以连接它们:
alert('number1: ' + numa + ' number2: ' + numb);
答案 2 :(得分:1)
你需要连接它们
alert(numa + "," + numb);
alert(numa + "\n" + numb);