do javascript switch 语句 case 允许使用表达式

发布于 2024-10-21 08:58:58 字数 393 浏览 1 评论 0原文

如果是,为什么此代码不发出任何警报?

<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>

if yes, why this code doesn't alert anything?

<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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

终弃我 2024-10-28 08:58:58

对我有用...

  • Firefox 3.6
  • Chrome 10

使用开关时,您通常将其与常量进行比较。您使用它的方式没有多大意义。

Works for me in...

  • Firefox 3.6
  • Chrome 10

With a switch, you generally compare it to constants. The way you are using it doesn't make much sense.

我爱人 2024-10-28 08:58:58

是的,它接受表达式来自规范

案例条款
case 表达式 : StatementListopt

正如其他人所说,它似乎对他们有用。可能您的实际代码中还有另一个错误。

Yes, it accepts expressions. From the specification:

CaseClause :
case Expression : StatementListopt

And as the others say, it seems to work for them. Probably you have another error in your real code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文