fixColum: function (ids) {
$("#" + ids).scroll(function () {
var left = $(this).scrollLeft();
var trs = $("#"+ids+" table tr");
trs.each(function (i) {
if ($(this).children().eq(0).text() == "操作" || $(this).children().eq(0).children().attr('operate')=="edit") {
$(this).children().eq(0).css({ "position": "relative", "top": "0px", "left": left, "background-color": "#F5F5F5", "z-index": "1" });
$(this).children().eq(1).css({ "position": "relative", "top": "0px", "left": left, "background-color": "#F5F5F5", "z-index": "1" });
$(this).children().eq(2).css({ "position": "relative", "top": "0px", "left": left, "background-color": "#F5F5F5", "z-index": "1" });
$(this).children().eq(3).css({ "position": "relative", "top": "0px", "left": left, "background-color": "#F5F5F5", "z-index": "1" });
}
});
});
}