質問編集履歴

2

divの指定indexが間違い修正

2021/02/01 06:08

投稿

maystorm
maystorm

スコア4

test CHANGED
File without changes
test CHANGED
@@ -164,9 +164,9 @@
164
164
 
165
165
  c1 : $(this).children('div:eq(0)').children(':input:visible').children(':selected').val(),
166
166
 
167
- c2 : $(this).children('div:eq(2)').children(':input').children(':selected').val(),
167
+ c2 : $(this).children('div:eq(1)').children(':input').children(':selected').val(),
168
168
 
169
- c3 : $(this).children('div:eq(4)').children(':input').val()
169
+ c3 : $(this).children('div:eq(2)').children(':input').val()
170
170
 
171
171
  });
172
172
 

1

試したソースコードを構文エラー修正

2021/02/01 06:08

投稿

maystorm
maystorm

スコア4

test CHANGED
File without changes
test CHANGED
@@ -162,11 +162,11 @@
162
162
 
163
163
  result.push({
164
164
 
165
- c1 : $(this).children('div:eq(0)').children(':input:visible').children(':selected').val();
165
+ c1 : $(this).children('div:eq(0)').children(':input:visible').children(':selected').val(),
166
166
 
167
- c2 : $(this).children('div:eq(2)').children(':input').children(':selected').val();
167
+ c2 : $(this).children('div:eq(2)').children(':input').children(':selected').val(),
168
168
 
169
- c3 : $(this).children('div:eq(4)').children(':input').val();
169
+ c3 : $(this).children('div:eq(4)').children(':input').val()
170
170
 
171
171
  });
172
172