0
<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 检查我的案例?

4

1 回答 1

2

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

你也声明你的脚本错误。它应该是<script type="text/javascript">

:)

于 2013-08-09T20:18:22.953 回答