1 <!DOCTYPE HTML> 2 <html lang="en-US"> 3 <head> 4 <meta charset="UTF-8"> 5 <title>检查本地存储</title> 6 <script type="text/javascript"> 7 function isSupportStorage(){ 8 return "localStorage" in window; 9 } 10 alert(isSupportStorage()); 11 </script> 12 </head> 13 <body> 14 15 </body> 16 </html>
检查本地存储
时间: 2024-10-09 17:24:45