0

当所有元素“复选框”都未选中时,我需要将单选按钮(“no_subscribe”)设置为 true。这应该在取消选中所有这些复选框后发生。如果在其他地方问过这个问题,请原谅我。我是javascript和一般编程的新手,所以非常感谢任何帮助!我已经能够让“订阅”按钮做我想做的事,但我无法弄清楚相反的情况。这些都在一个名为“mailer”的表格中。我最近删除了我所做的尝试。他们没有工作,所以很抱歉没有代码可以解决。

<fieldset>
Subscribe to our Mailing List?
        <input type = "radio" name = "yes" id = "subscribe" onclick = "subscribe_to_all();" value = "yes" />Yes
        <input type = "radio" name = "no" id = "no_subscribe" onclick = "subscribe_to_none();" value = "no" />No
</fieldset>

<fieldset name = "subscribe">
<legend>Mailing List Subscriptions</legend>
    <input type="checkbox" id = "c1" name="subscriptions" onclick = "radio_yes();"  value="CorporateEmails"/>
    Corporate Press Release Emails<br />
    <input type="checkbox" id = "c2" name="subscriptions" onclick = "radio_yes();"  value="SoftwareAdvertising"/>
    Upgrade Software Advertising List<br />
    <input type="checkbox" id = "c3" name="subscriptions" onclick = "radio_yes();"  value="PostBuyoutSpammers"/>
    List given to spammers after buyout<br />
    <input type="checkbox" id = "c4" name="subscriptions" onclick = "radio_yes();"  value="NonCynical"/>
    The only non-cynical list<br />
    <input type="checkbox" id = "c5" name="subscriptions" onclick = "radio_yes();"  value="SelltoSpammers"/>
    List to sell to spammers<br />
    <input type="checkbox" id = "c6" name="subscriptions" onclick = "radio_yes();"  value="SpamList"/>
    Spam List<br />

外部 javascript 文件:

function subscribe_to_all() {
    for (i = 0; i < document.mailer.subscriptions.length; i++) {
        document.mailer.subscriptions[i].checked = true;
    }
}

function subscribe_to_none() {
    for (i = 0; i < document.mailer.subscriptions.length; i++) {
        document.mailer.subscriptions[i].checked = false;
    }
}

function radio_yes() {
    document.getElementById("subscribe").checked = true;
}​
4

3 回答 3

1

通过使用 jQuery,您可以通过以下方式解决此问题:

class="subscriptions"属性添加到所有复选框。

$('.subscriptions').change(function() {
    var allUncheck = true;
    $('.subscriptions').each(function() {
        if ($(this).is(':checked')) allUncheck = false;
    });
    if (allUncheck == true) {
        $('#no_subscribe').attr('checked', 'true');
    } else {
        $('#no_subscribe').attr('checked', false);
    }
});​
于 2012-11-04T05:43:07.367 回答
0

我使用了一个新功能。它没有优化。我使用了一个新功能。在那里,您可以循环获取复选框状态。但我的代码有效。只需复制并粘贴并查看更改

    <script type="text/javascript">
function subscribe_to_all() {

for (i=0;i<document.mailer.subscriptions.length;i++){

document.mailer.subscriptions[i].checked = true;

}
}

function subscribe_to_none() {

for (i=0;i<document.mailer.subscriptions.length;i++){

document.mailer.subscriptions[i].checked = false;

}
}
function radio_yes() {

document.getElementById("subscribe").checked = true;

}
function radio_uncheck()
{


        c1=document.getElementById("c1").checked;
        c2=document.getElementById("c2").checked;
        c3=document.getElementById("c3").checked;
        c4=document.getElementById("c4").checked;
        c5=document.getElementById("c5").checked;
        c6=document.getElementById("c6").checked;
        console.log(c1);
        if(c1==false && c2==false && c3==false && c4==false && c5==false && c6==false)
        {document.getElementById("subscribe").checked=false;}

    //document.getElementById("subscribe").checked=false;
} 
</script>

<fieldset>
Subscribe to our Mailing List?
        <input type = "radio" name = "yes" id = "subscribe" onclick = "subscribe_to_all();" value = "yes" />Yes
        <input type = "radio" name = "no" id = "no_subscribe" onclick = "subscribe_to_none();" value = "no" />No
</fieldset>

<fieldset name = "subscribe">
<legend>Mailing List Subscriptions</legend>
    <input type="checkbox" id = "c1" name="subscriptions" onclick = "radio_yes();radio_uncheck();"  value="CorporateEmails"/>
    Corporate Press Release Emails<br />
    <input type="checkbox" id = "c2" name="subscriptions" onclick = "radio_yes();radio_uncheck();"  value="SoftwareAdvertising"/>
    Upgrade Software Advertising List<br />
    <input type="checkbox" id = "c3" name="subscriptions" onclick = "radio_yes();radio_uncheck();"  value="PostBuyoutSpammers"/>
    List given to spammers after buyout<br />
    <input type="checkbox" id = "c4" name="subscriptions" onclick = "radio_yes();radio_uncheck();"  value="NonCynical"/>
    The only non-cynical list<br />
    <input type="checkbox" id = "c5" name="subscriptions" onclick = "radio_yes();radio_uncheck();"  value="SelltoSpammers"/>
    List to sell to spammers<br />
    <input type="checkbox" id = "c6" name="subscriptions" onclick = "radio_yes();radio_uncheck();"  value="SpamList"/>
    Spam List<br />
于 2012-11-04T05:24:45.177 回答
0

这可以使用jquery解决。第一个字段集中的单选按钮应该具有相同的名称值...我已经在您的代码上尝试过。看看吧。我为字段集添加了一个 id 'search' ...

$(function() {
 $('#search input:checkbox').click(function() {
  var classes = $('#search input:checkbox:checked');  
  if(classes.length == 0)
    {
        $('input:radio[name=no]:nth(1)').attr('checked',true);
    }  
  else
    {
       $('input:radio[name=no]:nth(1)').attr('checked',false);
    }             
});
});

这是工作小提琴。 http://jsfiddle.net/NBCX8/4/

于 2012-11-04T06:00:12.787 回答