在项目开发中我们经常会遇到弹窗,有的是通过div模拟弹窗效果,有的是通过iframe,也有通过window自带的open函数打开一个新的窗口。今天给大家分享的是最后一种通过window.open()函数打开页面进行数据交互。首先看下效果图:
Document
<script><br />
var test = document.getElementById('test');<br />
test.onclick = function() {<br />
window.open('./window.html?param1=name¶m2=password', '_blank','width=960,height=650,menubar=no,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes');<br />
};<br />
window.getContent = function(tx) {<br />
document.getElementById('content').innerText = tx;<br />
}<br />
</script>
Document
<script><br />
var params = location.href.substring(location.href.lastIndexOf('?')+1).split('&');<br />
document.getElementById('content').innerText = params;<br />
var city = document.getElementById('city');<br />
city.onchange = function() {<br />
window.opener.getContent(city.value);<br />
}<br />
</script>