純粋なjsはインターレースの色の実例を実現します.

1187 ワード

<?php
		<head>    </head>
		<body>
		<script>
									document.write('<table border="1" width="800" align="center">');
							var i=0;
							while (i<100) {
								if (i%10==0) {//    
									if(i%20)			//         
										bg="#cccccc";
									else
										bg="#ffffff";
document.write('<tr onmouseover="show(this)" onmouseout="noshow(this)" bgcolor="'+bg+'">');//        ,         
								} 
								//  1000   
								document.write('<td>'+i+'</td>');
								i++;
								if (i%10==0) 
									document.write('</tr>');
								}	
							document.write('</table>');		
							
							var ys=null;
							function show (obj) {
								ys=obj.bgColor;
								obj.bgColor="red";
							}
							function noshow(obj){
								obj.bgColor=ys;
							}
				</script>
		</body>
?>