Status Bar Flasher

把以下代码放在<head></head>之间: <script> var yourwords = "Welcome to Ahao'HomePage"; var speed = 300; var control = 1; function flash() { if (control == 1) { window.status=yourwords; control=0; } else { window.status=""; control=1; } setTimeout("flash()",speed); } </script> 把以下代码放在<body>tag: <body onLoad="flash()">