源代码 :
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>开源教程(ossoft.cn)</title> </head> <body> <div id="result"></div> <script> if(typeof(Storage)!=="undefined") { localStorage.sitename="开源教程"; document.getElementById("result").innerHTML="网站名:" + localStorage.sitename; } else { document.getElementById("result").innerHTML="对不起,您的浏览器不支持 web 存储。"; } </script> </body> </html>
运行结果