Posted in Javascript onApril 21, 2013
<html> <head> <title> </title> <script> var cc= null; function show(obj) { cc=obj.style.backgroundColor; obj.style.backgroundColor="Red"; } function disshow(obj) { obj.style.backgroundColor=cc; } </script> </head> <body> <?php echo "<table border=1 align=center width=800"; echo "<caption><h1>用表格输出1-1000之间的数字</h1></caption>"; $i=0; $k=1; while($i<100) { $i++; if($i%2==0) $bgc="#ccba6e"; else $bgc="#eefa43"; echo "<tr bgcolor='".$bgc."'onmouseover='show(this)' onmouseout='disshow(this)' >"; $j=0; while($j<10) { echo "<td>".$k."</td>"; $j++; $k++; } echo "</tr>"; } echo "</table>"; ?> </body> </html>
用表格输出1-1000之间的数字实现代码(附特效)
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@