Strip

Strip

From ThaiiS Note (Wiki)

Jump to: navigation, search
There are security restrictions on this page
 
<script> 
$(document).ready(function()
  {
//for rows
	  $("tr:even").css("background-color", "#DDD");
	  $("tr:odd").css("background-color", "#EEE");
//for Column 
          $("td:even").css("background-color", "#DDD");
	  $("td:odd").css("background-color", "#EEE");
//for List 
          $("li:even").css("background-color", "#DDD");
	  $("li:odd").css("background-color", "#EEE");
//
//
  });
</script> 

for child css

$("#content tr:even").css("background-color", "#DDD");

Row (tr)

1
2
3
4
5

List(li)

Column(td)

1 2 3 4 5 6

  • หากใช้ในตารางที่ซับซ้อน ควรเลือกเพียง tr หรือ td
$("#content tr:even").css("background-color", "#F8F8F8");
$("#content tr:odd").css("background-color", "#FBFBFB");
Retrieved from "http://www.thaiis.eu/Strip"