リンク先から小さいウインドウを開きたいっ

[上に] [前に] [次に]
あふろ [E-Mail] 1999/09/23(木) 03:03:23
JavaScriptに関する質問です。

リンク先から小さいウインドウを開きたいのですが
以下のスクリプトでは一つしか開けません。

やりたい事は
Aりんくから、Aウインドウ
Bリンクから、Bウインドウ


というふうに、ページ内にサイズの違うウインドウを開くリンクを
複数設定したのですがこの場合スクリプトの記述は
どうすればいいのでしょうか?
どうかお願いします。



<script language="javascript">
<!----------------------------
function navi_win() {
  self.window.name="main"
  w = window.open('', 'Remocon', 'width=200,height=300
,status=yes,scrollbars=yes,directories=no,menubar=no,
resizable=yes,toolbar=no');
  if (w != null) {
    if (w.opener == null) {
      w.opener = self;
    }
    w.location.href = './another.htm';

  }
}
// --------------------------->
</script>

カーリー 1999/09/23(木) 23:39:43
w = window.open('', 'Remocon', 'width=200,height=300
,status=yes,scrollbars=yes,directories=no,menubar=no,
resizable=yes,toolbar=no');

となっている所を

w = window.open('R.htm', 'Remocon', 'width=200,height=300,status=yes,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=no');
w2 = window.open('R2.htm', 'Remocon2', 'width=300,height=200,status=yes,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=no');

とそれぞれ指定するのではダメですか?

ちなみに、コレはいらない。
if (w != null) {
if (w.opener == null) {
w.opener = self;
}
w.location.href = './another.htm';

}

[上に] [前に] [次に]