$(function () {
//even代表了table表中tr行数为偶数行;
$(".bjyxfm tr:even").SetTableSeparatorUI();
});
Html页面中的代码是:
隔行变色的事件为以下:
//表单中隔行变色
$.fn.SetTableSeparatorUI = function () {
$(this).css({ "background": "#fff" });
}
<div>
<table id="pgdx" class="bjyxfm" title=" 评估对象表" border="0" cellpadding="0" cellspacing="1">
<tr >
<th >
报告编号
</th>
<td colspan="3" >
<input id="txtProjectCode" name="txtProjectCode" class="txt_450" type="text" />
</td>
</tr>
<tr>
<th>
项目名称
</th>
<td colspan="3">
<input id="txtProjectName" name="txtProjectName" class="txt_450" type="text" />
</td>
</tr>
</table>
</ div >