我有以下代码:
var tabla_szam = 1;
var etk_szam = 1;
$(".etrend_ossze, .tabla_sel").each(function () {
if (etk_szam == 5) {
tabla_szam++;
etk_szam = 1;
}
$((this).find(":first-child")).attr("id", "tabla_" + tabla_szam + "_" + etk_szam); //i want to reach the actual .etrend_ossze and .tabla_sel
$((this).find(":second-child")).attr("id", "tabla_sel" + tabla_szam + "_" + etk_szam);
etk_szam++;
});
控制台给了我这个错误:TypeError: this.find is not a function。我想通过 $this 作为第一个和第二个元素来达到实际的 .etrend_ossze 和实际的 .tabla_sel 。