LoginSignup
0
0

More than 5 years have passed since last update.

IE11で互換モードでもlocalStorageは利用可能

Posted at

残念ながらIEの互換モードでの開発をいまだに強いられることがある。
そんな中でLocal Storageは互換モードに引っかかるかどうかを実験してみた。

結論としては利用できそう。
テストしたUAはIE11。

テストコードは下記のとおり。
metaでのX-UA指定をはずしてみたり、パターンはいくつか試したがいずれも大丈夫だった模様。

<!DOCTYPE HTML>
<html lang="ja">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=7" />
<script type="text/javascript">
<!--

function testLocalStorage(){
    //LocalStorageに登録がなかったときのために
    localStorage.setItem("LS_TEST", "" );
    for(var i in window.localStorage) {
        alert(i);
    }
}
//-->
</script>
</head>
<body>
<input type="button" value="LocalStorageのテスト" onclick="javascript:testLocalStorage()" />
</body>
</html>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0