我需要帮助,如何通过flexigrid上的索引选择tr?
$("#myTable td").prop("selectedIndex",3).addClass("trSelected")
不工作
答案 0 :(得分:0)
首先,请添加您的代码以获取更多信息。
在Jquery中,如果要实现索引搜索,可以使用:nth-child(n|even|odd|formula)
。
例如:
$("#myTable td selectedIndex:nth-child(3)");
以上代码获取myTable -> td -> selectedIndex
的第三个子元素(第一个元素的索引号为1)