1
如果是,爲什麼這段代碼不會提醒任何事情?做javascript switch語句case允許使用表達式
<html>
<head>
<script type="text/javascript">
switch ("hello world") {
case "hello" + " world":
alert("Greeting was found.");
break;
case "goodbye":
alert("Closing was found.");
break;
default:
alert("Unexpected message was found.");
}
</head>
</html>
無論如何,這個開關有什麼意義?爲什麼要將常量與其他常量進行比較? – 2011-03-10 14:01:12
它適用於Chrome。 – 2011-03-10 14:02:55
按我的預期工作,ff3.6 – meouw 2011-03-10 14:03:15