私のプログラムでは、一度に1つの質問を表示し、次にクリックすると投稿され、2番目の質問が表示されます。しかし、Jqueryの各質問のチェックボックスリストにいくつかのロジックを適用し、次のように呼び出します
$(document).ready(function () {
$("input:checkbox").change(function () {
var txt = $(this).parent().children("label").text();
if ($(this).is(':checked')) {
if ($(this).parent().children("label").text() == 'Not Sure') {
$("input:checkbox").attr('checked', false);
$("input:checkbox").attr('disabled', true);
$(this).attr('checked', true);
$(this).attr('disabled', false);
}
}
else {
if ($(this).parent().children("label").text() == 'Not Sure') {
$("input:checkbox").attr('checked', true);
$("input:checkbox").attr('disabled', false);
$(this).attr('checked', false);
}
}
});
$("input:checkbox").change(function () {
var txt = $(this).parent().children("label").text();
if ($(this).is(':checked')) {
if (txt == 'Not Sure' || txt == 'We Are Large Business' || txt == 'None of these apply') {
$("input:checkbox").attr('checked', false);
$("input:checkbox").attr('disabled', true);
$(this).attr('checked', true);
$(this).attr('disabled', false);
}
}
else {
if (txt == 'Not Sure' || txt == 'We Are Large Business' || txt == 'None of these apply') {
$("input:checkbox").attr('checked', false);
$("input:checkbox").attr('disabled', false);
$(this).attr('checked', false);
}
}
});
});
したがって、問題は、1 つの質問のロジックが他のチェック ボックス リストの質問とは異なり、上記の document.ready に見られるように適切な関数を呼び出す必要があることです。ready には 2 つの関数があります。では、特定の質問に対して、関数の呼び出しをどのように修正する必要がありますか?