部分回发后jquery.each不起作用

时间:2013-10-16 13:56:14

标签: jquery

 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但没有用

0 个答案:

没有答案