简体   繁体   English

使用Javascript单击单选按钮时隐藏DIV

[英]hide DIV when radio button is clicked with Javascript

I want to hide my div when a radio button is clicked, but cannot figure it out for the life of me.. Here is my code: 我想在单击单选按钮时隐藏div,但无法在我的生命中弄清楚。.这是我的代码:

 <li>
     Residential&nbsp;&nbsp;&nbsp;
     <input type="radio" name="fee" id="residential" class="app_fee"
            value="<?php echo "$applicationFee_residential" ?>"
            onChange="mech_application.fee1.value = eval(mech_application.residential.value)"
            <?php if (isset($_POST['fee'])) {
                      print($residentialYes ? "CHECKED" : "");
            } ?> />
 </li>

 <li>
     Apartment/Commercial
     <input type="radio" name="fee" id="apartment" class="app_fee"
            value="<?php echo "$applicationFee_Apartment" ?>"
            onChange="mech_application.fee1.value = eval(mech_application.apartment.value)"
            <?php if (isset($_POST['fee'])) {
                      print($apartmentNo ? "CHECKED" : "");
            } ?> />
 </li>

 <li>
     Revision&nbsp;
     <input type="radio" name="fee" id="revision" class="app_fee"
            value="<?php echo "$revision" ?>"
            onChange="mech_application.fee1.value = eval(mech_application.revision.value)"
            <?php if (isset($_POST['revision'])) {
                      print($revisionYes ? "CHECKED" : "");
            } ?> />
     <?php if ($_SERVER['REQUEST_METHOD'] == 'POST') {
               if (!isset($_POST['fee'])) {
                   $problem = TRUE;
                   print '<p class="error">Please select the application type</p>';
                   $error = TRUE;
                }
           }?>
  </li>

And I want to hide this div when either Residential or Apartment or clicked, and show it when revision is clicked: 我想在“住宅”或“公寓”或单击时隐藏此div,并在单击“修订”时显示它:

 <div class="revision_hidden">
     Application ID:
     <input type="text" name="revision_application_id" size="12" maxlength="40"
            value="<?php if (isset($_POST['revision_application_id'])) {
                             print htmlspecialchars($_POST['revision_application_id']);
                    } ?>"
            placeholder="Application ID"/>
 </div>

Any and all help is appreciated! 任何和所有帮助表示赞赏! Thank you! 谢谢!

You can use jQuery to hide elements real easy. 您可以使用jQuery轻松隐藏元素。

$('#id_of_div').hide()

For doing something on the radio button being clicked, use more jQuery 要在单选按钮上执行某些操作,请使用更多jQuery

$('#id_of_radioBtn').clicked(function(){
   //do something
});

Give your div an id: 给你的div一个ID:

<div class="revision_hidden" id="my_div"> ...

Add an onclick function to your radiobuttons: 向您的单选按钮添加一个onclick函数:

<input type="radio" name="fee" id="residential" onclick="my_function(this)" ...
<input type="radio" name="fee" id="apartment" onclick="my_function(this)" ...
<input type="radio" name="fee" id="revision" onclick="my_function(this)" ...

And add a JavaScript function: 并添加一个JavaScript函数:

function my_function(elm)
{
    if(elm == document.getElementById('residential') || elm == document.getElementById('apartment'))
    {
        //document.getElementById('my_div').style.visibility = "hidden";
        document.getElementById('my_div').style.display = "none";
    }
    else if(elm == document.getElementById('revision'))
    {
        //document.getElementById('my_div').style.visibility = "visible";
        document.getElementById('my_div').style.display = "block";
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM