博主信息
博文 21
粉丝 0
评论 0
访问量 16895
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
localStorage使用
中天行者
原创
792人浏览过

1.html

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Title</title>
  6. </head>
  7. <body>
  8. <div id="div" style="height: 200px;width: 200px" >
  9. <button id="button">点击</button>
  10. <button id="button2">点击</button>
  11. </div>
  12. <script>
  13. var div= document.getElementById("div");
  14. var button= document.getElementById("button");
  15. var button2= document.getElementById("button2");
  16. var bgcolor = window.localStorage.getItem('bgcolor');
  17. console.log(bgcolor)
  18. button.onclick=function () {
  19. bgcolor =prompt("请输入颜色");
  20. window.localStorage.setItem('bgcolor',bgcolor);
  21. div.style.background = bgcolor;
  22. }
  23. button2.onclick=function () {
  24. parent.location="2.html"
  25. }
  26. </script>
  27. </body>
  28. </html>

2.html

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>2</title>
  6. </head>
  7. <body id="body">
  8. <script>
  9. onload=function () {
  10. bgcolor = window.localStorage.getItem('bgcolor');
  11. document.getElementById("body").style.background=bgcolor;
  12. }
  13. </script>
  14. </body>
  15. </html>
批改老师:PHPzPHPz

批改状态:合格

老师批语:
本博文版权归博主所有,转载请注明地址!如有侵权、违法,请联系admin@php.cn举报处理!
全部评论 文明上网理性发言,请遵守新闻评论服务协议
0条评论
作者最新博文
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号

  • 登录PHP中文网,和优秀的人一起学习!
    全站2000+教程免费学