html5 window.localStorage.getItemItem get keys that start with

前端 未结 4 1294
天命终不由人
天命终不由人 2021-01-14 01:22

How could I use

window.localStorage.getItem();

to specify items in localstarage that start with the string \'QQ\'. In my case the key

4条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-14 02:13

    I use this:

     var keyIndex = 0;
     var thisKey = window.localStorage.key(keyIndex);
    
     while(thisKey != '' && thisKey != undefined)
     {
        if (thisKey.substr(0, 2) == 'QQ')
        {
           // do whatever you need to do with thisKey
        }
    
        keyIndex+= 1;
        thisKey = window.localStorage.key(keyIndex);
     }
    

    But robertc's solution is right too, it's a bit more simple that way. I actually changed my code to do a for loop too.

提交回复
热议问题