我正在嘗試使用HTML5功能localStorage。根據這個博客,它可以使用IE8完成,但是當我嘗試使用它時,卻出現了JavaScript錯誤'localStorage is null or not an object'所以我的問題是:localStorageIE8 可以直接使用嗎?這是我的代碼:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head> <meta http-equiv="X-UA-Compatible" content="IE=8" /> <title>IE8 - DOM Storage</title> <script type="text/javascript"> function Save() { localStorage.setItem('key','value'); } </script></head><body> <button onclick="Save();"> Save </button> </body></html>
IE8開箱即用是否支持“ localStorage”
藍山帝景
2019-10-31 14:07:28