JSP ページを作成したい。10秒ごとにポップアップウィンドウを表示したい。また、そのポップアップ ウィンドウ自体で認証を確認するための値を入力したいと考えています。どうやってするの?
<tr> <td> I VALUE : <input type="text" name="t1" /></td> </tr> <tr> <td> F VALUE : <input type="text" name="t2" /> </tr> <tr><td><input type="submit" name="b1" value="CHECK...!" />
これは私のスクリプトです
function validateForm()
{ long delay = 10*1000; // delay in ms : 10 * 1000 ms = 10 sec.
LoopTask task = new LoopTask();
Timer timer = new Timer("TaskName");
public void start()
{ timer.cancel();
timer = new Timer("TaskName");
public void run() { popitup();
}
function popitup(url)
{ newwindow=window.open('localhost:8080/Authentication/…);
if (window.focus)
{newwindow.focus();
} return false;
} } } </script>