focus()メソッドは、指定したフレームにフォーカスをあてます。
<!DOCTYPE html> <html lang="ja"> <head><title>フレーム使用例</title></head> <frameset cols="300,*"> <frame src="frame_focus_hidari.htm" name="hidari"> <frame src="frame_focus_migi.htm" name="migi"> <noframes> このページはフレームを使用しています。 </noframes> </frameset> </html>
<!DOCTYPE html> <html lang="ja"> <head> <script> function sample() { top.migi.focus(); } </script> </head> <body> <h3>左フレーム</h3> <a onclick="sample()">ここをクリックすると右フレームにフォーカスがあたります。</a> </body> </html>
<!DOCTYPE html> <html lang="ja"> <head> </head> <body> <h3>右フレーム</h3> </body> </html>
top.フレーム名.操作内容 …… トップフレームを操作する
parent.フレーム名.操作内容 …… 親フレームを操作する
self.操作内容 …… 自フレームを操作する
フレーム名.alert() …… 警告ダイアログを表示する
フレーム名.blur() …… フレームからフォーカスをはずす
フレーム名.confirm() …… 確認ダイアログを表示する
フレーム名.focus() …… フレームにフォーカスをあてる
フレーム名.prompt() …… 文字入力ダイアログを表示する