var matchedRowIndex;=-1;
$(function ()
{
$(".csstablelisttdsch td:nth-child(1)").each(function (e)
{
//Some code to match row.
matchedRowIndex = $(this).closest('tr').index();
});
});
jquery.each在部分回发后无效。
$(document).on('each', '.csstablelisttdsch td:nth-child(1)', function (e)
{
alert()
});
我使用过document.on但没有用