Jump to content
  • 0

Вопрос по Chekbox


oprst
 Share

Question

Здравствуйте. Друзья, подскажите решить такую задачку.

Есть два чекбокса - mode1 и mode2. 

  <div>
    <div>
      <div id="instmode">
        <form>
          <div style="float: left; padding-right: 10px;">
            <input type="radio" name="instmode" id="imode_1" value="MODE1" onclick="show_instmode1(this)">
            <label for="imode_1">Единственное устройство</label>
          </div>
          <div>
            <input type="radio" name="instmode" id="imode_2" value="MODE2" onclick="show_instmode2(this)">
            <label for="imode_2">Группа устройств</label>
          </div>
        </form>
      </div>
    </div>
      <div><br></div>
    <div id="log"></div>
  </div>

<script type="text/javascript">
$(function() {
	$( "#instmode" ).buttonset(); 
});

$( "input" ).on( "click", function() {
  $( "#log" ).html( $( "input:checked" ).val() + " is checked!" );
});
</script> 

 

Сейчас при выборе одного из них - появляется в дивке LOG - сообщение, какой чек бокс активен.

Подскажите пожалуйста, как сделать так, что бы при выборе определенного чек бокса появлялся определенный див.

условно при выборе MODE1 - появилась div id=mode1 при выборе mode2 появилась div id=mode2 

 

Заранее благодарю.

Edited by oprst
Устное предупреждение за не правильное оформление темы
Link to comment
Share on other sites

3 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy