我想提示,然後比較兩個值:JavaScript的比較失敗
var x,y;
x = prompt("enter the first value","");
x = prompt("enter the second value","");
if(x > y)
{
alert("x>y");
}
else if(x < y)
{
alert("y>x")
}
else
{
alert("error");
}
每次我跑這一點,alert("error")
線被擊中。我究竟做錯了什麼?
你正在使用`x =`兩次 – vol7ron 2011-02-10 00:59:22