我正在尝试创建一个多反馈 jquery 问题我需要一些关于我的 if 语句代码的帮助。我有一个正确答案,但希望在选择每个错误答案时有不同的反馈提醒。我希望它为每个错误的答案提供不同的反馈。例如,“您选择了灰色,有更好的答案,请重新选择。” 或“你选择了黑色,有更好的答案。”
到目前为止,这是我的代码。
查询:
$(function () {
//variable of correct answers
var rules = ['correct'];
//force checkboxes to work like radio buttons
var boxes = $("input[name=q4]:checkbox").click(function () {
boxes.not(this).attr('checked', false);
});
$('.submit4').click(function (e) {
e.preventDefault();
//check correct answers from var above
if ($('input[name=q4]:checked').map(function (i, v) {
return v.id;
}).get().join(',') == rules[0]) {
alert("Correct! Reflective colors should make you more visible at night");
} else {
$('.grey:checked').attr('disabled', 'disabled').removeAttr('checked');
alert("grey is wrong... it might not be bright enough.");
}
});
});
HTML:
<h1> Question </h1>
<p>What is the best color to wear after dark?</p>
<form>
<label>
<input type="checkbox" name="q4" class="grey"></input>grey</label>
<label>
<input type="checkbox" name="q4" class="black"></input>black</label>
<label>
<input type="checkbox" name="q4" class="white"></input>white</label>
<label>
<input type="checkbox" name="q4" class="red"></input>red</label>
<label>
<input type="checkbox" name="q4" id="correct"></input>reflective yellow</label>
<br />
<button class="submit4">Submit</button>
</form>