Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 JQuery 在 ASP.NET DataGrid 中的特定行之后添加新行。我已经在每一行之后添加了一个新行:
$('<tr class="sep"><td colspan="13"></td></tr>').insertAfter('tr.fila');
但现在我想在某些特定行之后添加行,而不是在所有行之后。
有人可以帮我解决这个问题吗?
除非我们知道您需要定位的特定行的标准是什么,否则我们无法真正回答这个问题。
以下是一些可能对您有用的 jQuery 选择器:
http://api.jquery.com/?s=nth
如果它基于数据场景,您可以通过 DataBound 事件等向行/单元格添加一个类,并使用选择器定位该类。或者,如果它与其他行一样,您可以简单地在 jQuery 中完成。