摘要: /*控制隔行换色的JS*/ $().ready(function(){ $("tr").each(function(i){ this.style.backgroundColor = ['#F8F8F8', '#F2F2F2'][i % 2] });}); 阅读全文
posted @ 2014-09-01 16:58 Coca-code 阅读(170) 评论(0) 推荐(0)