两个页面之间用本地存储通讯 ,上代码,两个demo
一:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<input type="text" id='input' />
<script type="text/javascript">
document.getElementById('input').onblur=function(){
localStorage.setItem('demo',this.value)
}
</script>
</body>
</html>
二:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title></title>
</head>
<body>
<input type="text" id="val"/>
<script type="text/javascript">
window.addEventListener('storage',function(e){
document.getElementById('val').value=e.newValue
})
</script>
</body>
</html>