html5 window.localStorage.getItemItem get keys that start with

前端 未结 4 1284
天命终不由人
天命终不由人 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 01:53

    for ( var info in window.localStorage ){
     if ( info.substring( 0 , 2 ) === "QQ"){
      var data = window.localStorage.getItem( info ) );
      console.log(info);
     }
    

    code not tested

提交回复
热议问题