如果大于jQuery

时间:2017-08-08 02:39:04

标签: validation for-loop if-statement

我是jQuery的初学者你能帮我为此构建一个脚本吗?

我设置了一组具有输入

的字段集
<p><input type="radio" class="scenarioRadio" value="5" name="group26" /><label>Strongly agree </label></p>
<p><input type="radio" class="scenarioRadio" value="4" name="group26" /><label>Somewhat agree </label></p>
<p><input type="radio" class="scenarioRadio" value="3" name="group26" /><label>Neither agree or disagree</label></p>
<p><input type="radio" class="scenarioRadio" value="2" name="group26" /><label>Somewhat disagree</label></p>
<p><input type="radio" class="scenarioRadio" value="1" name="group26" /><label>Strongly disagree </label></p>
<p><input type="radio" class="scenarioRadio" value="0" name="group26" /><label>Don’t know / Can’t say</label>

现在我有一套条件:

  1. 如果两个响应具有相同的数字并且它们彼此相邻,则显示较低的值响应。
  2. 实施例。

    第一位用户回答:非常同意[value =“5”]
    第二位用户回答:有点同意[value =“4”]
    最终答案应该是较低级别:有点同意[value =“4”]

    1. 如果两个回复号码相同但彼此不相邻,则显示“不知道/不能说”
    2. 实施例

      4说他们“非常不同意” 而 4说他们“有点同意”(这就是我所说的“相等数字”)
      然后结果是最低的“不知道/不能说”[value =“0”]

      在这种情况下我应该使用什么?以及如何建立它?

      提前致谢!

0 个答案:

没有答案