質問のセットはほとんどありません。各質問のセットには2つの入力フィールドが含まれています。
<!--Question Set-->
<tr class="options_row">
<td>
<img src="images/top_bullet.gif" alt="bullet" />
I will only be satisfied with a usually high standard of living </td>
<td width="5%">
<input name="score[]" type="text" class="score num" title="1" maxlength="1" />
</td>
</tr>
<tr class="options_row">
<td>
<img src="images/top_bullet.gif" alt="bullet" />
I wish to have considerable influence over other people. </td>
<td width="5%">
<input name="score[]" type="text" class="score num" title="2" maxlength="1" />
</td>
</tr>
ここで、入力値の 2 つの各セットを検証する必要があります
例えば
->質問セット1->入力_1 + 入力_2 >=3
->質問セット1->入力_1 + 入力_2 <=3
関数を使用してみましたclosest
が、うまくいきません。
var score_val = $(this).closest('.score');
ありがとう。