两个网页之间js怎样传送表单中变量的值呢?
两个网页之间js怎样传送表单中变量的值呢?
<script>
function aaa() {
window.location.href="a.html?aa=bb&cc=dd"
alert(document.location.search)
}
</script>
<body>
<button onclick=aaa()>得到参数</button>
也可以用frame和iframe还有scriptlet来嵌套网页,都可以传递参数