$(".x-table").find("tr").on("click", function() { var that = $(this); // 将当前的 this 上下文保存到变量 that 中
var rowIndex = that.attr("tridx"); // 使用 that 来引用原来的 this 上下文
if (rowIndex !== "0" && rowIndex !== "1") { _g().addEffect('highlightRow', { color: 'red', trigger: 'mousedown', single: true }); } }); |