javascript
1//s.html
2<script>
3var a,b;
4function hyouji() {
5 a=window.open("a.html", "window1");
6 b=window.open("b.html", "window2");
7}
8</script>
9<input type = "button" value = "S" onclick = "hyouji();">
10
11//a.html
12<script>
13function changecolor(){
14opener.document.body.style.backgroundColor="yellow";
15opener.b.document.body.style.backgroundColor="blue";
16}
17</script>
18<input type="button" value="changecolor" onclick="changecolor()">
19
20//b.html
21b