<html> |
<head> |
<title></title> |
<script src= "jquery-1.8.3.js" type= "text/javascript" ></script> |
<script> |
/* |
$(function(){ |
$("#pingfen td").html("☆").mouseover(function(){ |
$("#pingfen td").html("★");$(this).nextAll().html("☆"); |
}); |
})*/ |
$(function(){ |
$( "#pingfen td" ).html( "☆" ).mouseover(function(){ |
$( this ).html( "★" );$( this ).sibilings().html( "★" );$( this ).nextAll().html( "☆" ); |
}); |
}); |
</script> |
</head> |
<body> |
<table id= "pingfen" > |
<tr><td></td><td></td><td></td><td></td><td></td></tr> |
</table> |
</body> |
</html> |