2012-04-18 96 views
-1

我有一个表单,我正在建立一个客户端,我试图做到这一点,当一组单选按钮被选中时,禁用复选框列表,但如果单选按钮复选框被选中,然后清除其他单选按钮,如果他们被选中。表单单选按钮禁用/启用组

这里是我使用的代码:

<form action="#"> 
<fieldset><legend>Activities</legend> 
    <input style="margin-right:0; margin-left:0;" type="radio" id="Golf" value="I would like to golf at The Breakers Ocean Course" name="activity" /> 
    <label for="Golf">Golf - The Breakers Ocean Course</label> 
    <ul style="margin-top:0;"> 
     <label for="club">Club Rental</label> 
     <input style="margin-right:0; margin-left:0;" type="radio" id="club-yes" value="Yes" name="clubrental" /> 
     <label for="club-yes">Yes</label> 
     or 
     <input style="margin-right:0; margin-left:0;" type="radio" id="club-no" value="No" name="clubrental" /> 
     <label for="club-no">No</label><br> 

     <input style="margin-right:0; margin-left:0;" type="radio" id="right-hand" value="Right Handed" name="clubhand" /> 
     <label for="right-hand">Right Handed</label> 
     or 
     <input style="margin-right:0; margin-left:0;" type="radio" id="left-hand" value="Left Handed" name="clubhand" /> 
     <label for="left-hand">Left Handed</label> 
    </ul> 
<div style="clear:both;">&nbsp;</div> 
    <input style="margin-right:0; margin-left:0;" type="radio" id="hometour" value="I would like to take the Home tour and Worth Avenue Shopping" name="activity" /> 
    <label for="hometour">Home tour and Worth Avenue Shopping</label> 
<div style="clear:both;">&nbsp;</div> 
    <input style="margin-right:0; margin-left:0;" type="radio" id="museum" value="I would like to attend the Cars of Dreams Museum Tour" name="activity" /> 
    <label for="museum">Cars of Dreams Museum Tour</label> 
<div style="clear:both;">&nbsp;</div> 
    <input style="margin-right:0; margin-left:0;" type="radio" id="spa" value="I would like to attend The Spa at the Breakers" name="activity" /> 
    <label for="spa">Spa - The Spa at the Breakers</label> 
     <ul style="margin-top:5px;"> 
      - Please select two treatments<br> 
      <div style="float:left; width:220px; margin-right:15px;"> 
      <input type="checkbox" id="personal-retreat-massage" value="Personal Retreat Massage" name="treatment" onclick="setItems(this)"> 
      <label for="personal-retreat-massage">Personal Retreat Massage</label> 
      </div> 
      <div style="float:left; width:220px; margin-right:15px;"> 
      <input type="checkbox" id="simplicity-massage" value="Simplicity Massage" name="treatment" onclick="setItems(this)"> 
      <label for="simplicity-massage">Simplicity Massage</label> 
      </div> 
      <div style="float:left; width:220px; margin-right:15px;"> 
      <input type="checkbox" id="guerlain-classic-facial" value="Guerlain Classic Facial" name="treatment" onclick="setItems(this)"> 
      <label for="guerlain-classic-facial">Guerlain Classic Facial</label> 
      </div> 
      <div style="float:left; width:220px; margin-right:15px;"> 
      <input type="checkbox" id="cellular-enzyme-peel" value="Cellular Enzyme Peel" name="treatment" onclick="setItems(this)"> 
      <label for="cellular-enzyme-peel">Cellular Enzyme Peel</label> 
      </div> 
     </ul> 
</fieldset> 
    <center><input style="width:75px; height:25px; margin-bottom:25px;" type="submit" value="Submit" name="submit"></center> 
</form 

> 我不能使用PHP所以这只能是使用Javascript。

谢谢。

+0

如果您发布您尝试过的内容,您可能会得到更多回复。你也可能只能发布你的html影响(影响?我总是混合起来......)你当前的问题。 – Andbdrew 2012-04-18 00:23:52

回答

0

您可能会尝试在未选中spa单选按钮时禁用复选框,并在选中时启用它们。您可以检查无线电元件的焦点状态。我认为像下面这样的东西应该适合你:

$('[type="radio"]').focus(function(){ 
    if ($('#spa').prop('checked')) {// jQuery 1.7.2 
     $('[type="checkbox"]').removeAttr('disabled'); 
    } else { 
     $('[type="checkbox"]').attr('disabled', 'disabled'); 
    } 
}) 

希望它有帮助!

你应该看看jQuery文档!他们非常有帮助!

http://api.jquery.com/

一些事情,可能会在目前的情况下帮助有:

http://api.jquery.com/attr/

http://api.jquery.com/removeAttr/

http://api.jquery.com/focus/

http://api.jquery.com/blur/

http://api.jquery.com/category/selectors/