] 源码如下 ---------------------------------------------------------- <table border="0" width="280" id="myexample" style="border:5px solid green"> <tr> <td>Insert anything you want into this table.<br>Insert anything you want into this table.<br>Insert anything you want into this table.<br></td> </tr> </table> <script language="JavaScript1.2"> <!--
/* Flashing Table Border Script- ?Dynamic Drive (www.dynamicdrive.com) For full source code, installation instructions, 100's more DHTML scripts, and Terms Of Use, visit dynamicdrive.com */
function flashit(){ if (!document.all) return if (myexample.style.borderColor=="green") myexample.style.borderColor="red" else myexample.style.borderColor="green" } setInterval("flashit()", 500) //--> </script>