localStorage使用
程序员文章站
2022-03-03 22:37:38
...
1.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div id="div" style="height: 200px;width: 200px" >
<button id="button">点击</button>
<button id="button2">点击</button>
</div>
<script>
var div= document.getElementById("div");
var button= document.getElementById("button");
var button2= document.getElementById("button2");
var bgcolor = window.localStorage.getItem('bgcolor');
console.log(bgcolor)
button.onclick=function () {
bgcolor =prompt("请输入颜色");
window.localStorage.setItem('bgcolor',bgcolor);
div.style.background = bgcolor;
}
button2.onclick=function () {
parent.location="2.html"
}
</script>
</body>
</html>
2.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>2</title>
</head>
<body id="body">
<script>
onload=function () {
bgcolor = window.localStorage.getItem('bgcolor');
document.getElementById("body").style.background=bgcolor;
}
</script>
</body>
</html>
推荐阅读
-
SQL Server设置主键自增长列(使用sql语句实现)
-
钉钉团队号是什么?钉钉团队号使用教程
-
小鸡模拟器怎么样 小鸡模拟器详细使用图文方法
-
基于Android SQLite的使用介绍
-
IE浏览器怎么使用F12开人员工具提取视频下载地址?
-
详解spring cloud Feign使用中遇到的问题总结
-
Android中gravity与layout_gravity的使用区别分析
-
使用Spring Cloud Feign作为HTTP客户端调用远程HTTP服务的方法(推荐)
-
Solidworks2013移动实体需要使用哪些命令?
-
apple watch支付宝怎么使用 apple watch支付宝使用方法图文教程