最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Javascript switch not working - Stack Overflow

programmeradmin0浏览0评论

I have the folowing code:

var windowNow = window.localStorage.getItem("windowNow");
switch(windowNow)
{
case 1:
    var link = ".aspx";
    var listviewID = "feedZive";
    break;
case 2:
    var link = ".aspx";
    var listviewID = "feedMobil";
    break;
case 3: 
    var link = "";
    var listviewID = "feedAuto";
    break;
}

and I know that windowNow === 1 because I have checked it with alert and also to be sure that it realy is 1 I checked it with if(windowNow == 1) { alert ("Window now is 1");} and it worked. But it is not working inside my switch (checked it with alerts).

I have the folowing code:

var windowNow = window.localStorage.getItem("windowNow");
switch(windowNow)
{
case 1:
    var link = "http://www.zive.sk/rss/sc-47/default.aspx";
    var listviewID = "feedZive";
    break;
case 2:
    var link = "http://mobilmania.azet.sk/rss/sc-47/default.aspx";
    var listviewID = "feedMobil";
    break;
case 3: 
    var link = "http://www.automoto.sk/rss";
    var listviewID = "feedAuto";
    break;
}

and I know that windowNow === 1 because I have checked it with alert and also to be sure that it realy is 1 I checked it with if(windowNow == 1) { alert ("Window now is 1");} and it worked. But it is not working inside my switch (checked it with alerts).

Share Improve this question edited Sep 12, 2012 at 15:11 MaxArt 22.7k10 gold badges84 silver badges81 bronze badges asked Sep 12, 2012 at 15:08 horinhorin 1,6546 gold badges23 silver badges53 bronze badges 2
  • 1 try to give double quatation for case like this case "1" – Aravindhan Commented Sep 12, 2012 at 15:10
  • to really verify the value use if(windowNow === 1) – Geoff Commented Sep 12, 2012 at 15:12
Add a ment  | 

2 Answers 2

Reset to default 8

The items in the localStorage are always strings. Use case "1" and so on.

The problem with your check is that is a loose check, which doesn't check for the data type. You should have tried

if(windowNow === 1) { alert ("Window now is 1");}

Notice the triple =.

Do not declare variables inside a switch. Declare them outside the switch and assign inside. Also convert to an integer first.

var windowNow = parseInt(window.localStorage.getItem("windowNow"), 10), link, listviewID;
switch(windowNow)
{
case 1:
    link = "http://www.zive.sk/rss/sc-47/default.aspx";
    listviewID = "feedZive";
    break;
case 2:
    link = "http://mobilmania.azet.sk/rss/sc-47/default.aspx";
    listviewID = "feedMobil";
    break;
case 3: 
    link = "http://www.automoto.sk/rss";
    listviewID = "feedAuto";
    break;
default:
    // default assignment.
}
发布评论

评论列表(0)

  1. 暂无评论