-1
したがって、アイテムのn番目の子を生成するはずのJavascript関数があります。以下はその関数のコードです。Javascript関数は期待した結果を得られません
function findNthChild(element) {
\t nthchild = 1;
\t console.log(element);
\t if (element.prev().hasClass('.point')) {
\t \t while (element.prev().hasClass('.point')) {
\t \t \t nthchild++;
\t \t \t element == element.prev()
\t \t }
\t \t return nthchild;
\t }
\t else {
\t \t console.log('lmao');
\t \t return 1;
\t }
}
'要素= element.prev();'の代わりに '要素== element.prev();' –
は 'jQueryオブジェクトまたはDOM要素をelement'ていますか? – jfriend00