适当的开关声明?

时间:2013-08-09 20:15:27

标签: javascript

<script language="text/javascript">
var URL = document.URL;
<--switch (URL) {
   case "http://www.greatarchitect.us/defatank":
      document.write("Displaying Defatank");
      break;
   case "seeingblue":
      document.write("Displaying SeeingBlue");
      break;
   case "shiroshii":
      document.write("");
      break;
   case "theend66":
      document.write("");
      break;
   case "wakawaka647":
      document.write("");
      break;
   case "xtheguythatplays":
      document.write("");
      break;
}-->
</script>

上述代码有什么问题?我正在尝试根据页面URL加载特定数据。

我更新了代码。我如何只显示URL以确保我正在检查我的案例与正确的URL?

1 个答案:

答案 0 :(得分:2)

document.URL返回整个网址。你需要过滤/砍掉它才能操纵你想要的部分。

你也宣布你的脚本错了。它应该是<script type="text/javascript">

:)