<html><head><title>每隔3秒弹出对话框</title></head><body>不要以为这是个空网页,一会就有东西弹出来~<script language="javascript" type="text/javascript">function time(){ alert("我3秒出来一次.");}setInterval("time()",3000);</script></body></html>