我想用 xy 结果创建表格
例如,单独检查“A”可能会产生结果 1,而如果同时检查“A”和“B”,则答案是结果 2。D、E、A 可能给出结果 3,而 B、E、A 给出结果 2。希望你明白这一点。
<form action="">
<input type="checkbox" name="options" value="A" />Choice A<br />
<input type="checkbox" name="options" value="B" />Choice B<br />
<input type="checkbox" name="options" value="C" />Choice C<br />
<input type="checkbox" name="options" value="D" />Choice D<br />
<input type="checkbox" name="options" value="E" />Choice E<br />
<br />
<input type="submit" value="answer">
和 jquery 将是沿着这些路线的东西
$(':checkbox').click(function () {
var value = $(this).val();
if ($(this).val(["A","B","C"]).is(':checked'))
$('.result1').show(value);
else
$('.result1').hide(value);
if ($(this).val(["A","D","E"]).is(':checked'))
$('.result2').show(value);
else
$('.result2').hide(value);
这不起作用,所以如果你能帮助我,那就太好了!