繁体   English   中英

Javascript-基于下拉菜单启用/禁用元素和文本框不起作用

[英]Javascript - enable/disable elements and text box based on drop down not working

此处的代码演示摘自该问题 但是,当从下拉列表中选择值“其他”时,我想启用文本框。

这是我从jsfiddle中编辑的代码。

<html>
<head>
<title> Submit a Contract </title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript">
function toggleExternal() {
    document.getElementById("extText").disabled = false;

    var divis_el = document.getElementById("division");
    for (var i = 0; i < divis_el.children.length; i++) {
        divis_el.children[i].disabled = true;
    }
}
function toggleDivision() {
    document.getElementById("extText").disabled = true;z
    var divis_el = document.getElementById("division");
    for (var i = 0; i < divis_el.children.length; i++) {
        divis_el.children[i].disabled = false;
    }
}

function enableTextbox() {
var val = document.getElementById("mySelect").selectedIndex;
if (val == 0 || val == 1 ||val == 2 ||val == 3 ||val == 4 ||) { document.getElementById("otherTxt").disabled = true}
if (val == 5) { document.getElementById("otherTxt").disabled = true; }
}
</script>
</head>
<body>
<form method="post" action="" enctype="multipart/form-data">
    ID:<br>
    <input type="hidden" name="id" value="50" />

    <label for = "client1">
    <input type="radio" name="client_type" id = "client1" value="Division" checked onclick="toggleDivision()"/> Division
    </label>
    &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp 
    <label for ="client2">
    <input type="radio" name="client_type" id = "client2" value="External"  onclick="toggleExternal()"/> External
    </label>
    &nbsp 
    <input disabled type="text" id="extText" name="client_details2" value=""/> 
    <br><br>

    <div id="division">
    Division:
    <select id="mySelect" name="client_details" onchange="enableTextbox()">
        <option value="Choose">Choose Division...</option>
        <option value="Distribution">Distribution</option>
        <option value="Transmission">Transmission</option>
        <option value="Generation">Generation</option>
        <option value="Procument">Procument</option>
        <option value="Other">Others</option>
    </select>   
    <br><br>
    Others:<input type="text" id="otherTxt" name="client_details1" value="" disabled/>
    <br>
    </div>
    <br>
    <input type="submit" name="submit" value="Submit"/>
</form>     
</body>

我添加了功能enableTextBox,然后禁用/启用的元素突然不起作用。 这是为什么?

这是工作代码

    <html>
<head>
<title> Submit a Contract </title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">

</head>
<body>
<form method="post" action="" enctype="multipart/form-data">
    ID:<br>
    <input type="hidden" name="id" value="50" />

    <label for = "client1">
    <input type="radio" name="client_type" id = "client1" value="Division" checked onclick="toggleDivision()"/> Division
    </label>
    &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp 
    <label for ="client2">
    <input type="radio" name="client_type" id = "client2" value="External"  onclick="toggleExternal()"/> External
    </label>
    &nbsp 
    <input disabled type="text" id="extText" name="client_details2" value=""/> 
    <br><br>

    <div id="division">
    Division:
    <select id="mySelect" name="client_details" onchange="enableTextbox()">
        <option value="Choose">Choose Division...</option>
        <option value="Distribution">Distribution</option>
        <option value="Transmission">Transmission</option>
        <option value="Generation">Generation</option>
        <option value="Procument">Procument</option>
        <option value="Other">Others</option>
    </select>   
    <br><br>
    Others:<input type="text" id="otherTxt" name="client_details1" value="" disabled/>
    <br>
    </div>
    <br>
    <input type="submit" name="submit" value="Submit"/>
</form>  
<script>
    function toggleExternal() {
        document.getElementById("extText").disabled = false;

        var divis_el = document.getElementById("division");
        for (var i = 0; i < divis_el.children.length; i++) {
            divis_el.children[i].disabled = true;
        }
    }
    function toggleDivision() {
        alert('a')
        document.getElementById("extText").disabled = true;
        var divis_el = document.getElementById("division");
        for (var i = 0; i < divis_el.children.length; i++) {
            divis_el.children[i].disabled = false;
        }
    }

    function enableTextbox() {
    var val = document.getElementById("mySelect").selectedIndex;
    if (val == 0 || val == 1 ||val == 2 ||val == 3 ||val == 4) { document.getElementById("otherTxt").disabled = true}
    if (val == 5) { document.getElementById("otherTxt").disabled = false; }
    }
</script>   
</body>

您在此行中犯了一个错误。 val == 4您放置了“或”符号“ || ”,这在JS中是不允许的。

您的第二个错误是“ otherTxt ”字段已被禁用,您尝试禁用它。 因此更改值“ disable = false

if (val == 0 || val == 1 ||val == 2 ||val == 3 ||val == 4) 
{
   document.getElementById("otherTxt").disabled = false
}

如果您可以在单击外部和再次划分字段的同时选择其他菜单,则将在此处启用其他文本框。 因此,此问题也已在此处解决。 改变这样的if条件。 检查问题并解决。 这将帮助您更好地为您服务,不会出现任何问题。

   <html>
    <head>
    <title> Submit a Contract </title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <script type="text/javascript">
    function toggleExternal() {
        document.getElementById("extText").disabled = false;

        var divis_el = document.getElementById("division");
        for (var i = 0; i < divis_el.children.length; i++) {
            divis_el.children[i].disabled = true;
        }

    }
    function toggleDivision() {
        document.getElementById("extText").disabled = true; 
        var divis_el = document.getElementById("division");
        for (var i = 0; i < divis_el.children.length; i++) {
            divis_el.children[i].disabled = false;
        }
        var val = document.getElementById("mySelect").selectedIndex;
    if (val != 5 ) { document.getElementById("otherTxt").disabled = false}else{document.getElementById("otherTxt").disabled = true; }

    }

    function enableTextbox() {
    var val = document.getElementById("mySelect").selectedIndex;
    if (val == 0 || val == 1 ||val == 2 ||val == 3 ||val == 4 && val != 5 ) { document.getElementById("otherTxt").disabled = false}else{document.getElementById("otherTxt").disabled = true; }

    }
    </script>
    </head>
    <body>
    <form method="post" action="" enctype="multipart/form-data">
        ID:<br>
        <input type="hidden" name="id" value="50" />

        <label for = "client1">
        <input type="radio" name="client_type" id = "client1" value="Division" checked onclick="toggleDivision()"/> Division
        </label>
        &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp 
        <label for ="client2">
        <input type="radio" name="client_type" id = "client2" value="External"  onclick="toggleExternal()"/> External
        </label>
        &nbsp 
        <input disabled type="text" id="extText" name="client_details2" value=""/> 
        <br><br>

        <div id="division">
        Division:
        <select id="mySelect" name="client_details" onchange="enableTextbox()">
            <option value="Choose">Choose Division...</option>
            <option value="Distribution">Distribution</option>
            <option value="Transmission">Transmission</option>
            <option value="Generation">Generation</option>
            <option value="Procument">Procument</option>
            <option value="Other">Others</option>
        </select>   
        <br><br>
        Others:<input type="text" id="otherTxt" name="client_details1" value="" />
        <br>
        </div>
        <br>
        <input type="submit" name="submit" value="Submit"/>
    </form>     
    </body>

那对你有帮助。

<html>
    <head>
    <title> Submit a Contract </title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript">

        function clientDetails(){

            console.log(document.getElementById("client_details").value);
            if(document.getElementById("client_details").value == "Other"){
        document.getElementById("client_details1").disabled = false;
      }else{
        document.getElementById("client_details1").disabled = true;
      }
    }

    function toggleExternal() {
        document.getElementById("extText").disabled = false;
        var divis_el = document.getElementById("division");
        for (var i = 0; i < divis_el.children.length; i++) {
            divis_el.children[i].disabled = true;
        }
    }
    function toggleDivision() {
        document.getElementById("extText").disabled = true;
        var divis_el = document.getElementById("division");
        for (var i = 0; i < divis_el.children.length; i++) {
            divis_el.children[i].disabled = false;
        }
}
</script>
</head>
<body>
    <form method="post" action="" enctype="multipart/form-data">
        ID: 50<br>
        <input type="hidden" name="id" value="50" />

        <label for = "client1">
        <input type="radio" name="client_type" id = "client1" value="Division" checked onclick="toggleDivision()"/> Division
        </label>
        &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp &nbsp 
        <label for ="client2">
        <input type="radio" name="client_type" id = "client2" value="External"  onclick="toggleExternal()"/> External
        </label>
        &nbsp 
        <input disabled type="text" id="extText" name="client_details2" value="rrrrrr"/> 
        <br><br>

        <div id="division">
        Division:
        <select name="client_details" id="client_details" onchange="clientDetails()">
            <option value="Choose"  />Choose Division...</option>
            <option value="Distribution"  />Distribution</option>
            <option value="Transmission"  />Transmission</option>
            <option value="Generation"  />Generation</option>
            <option value="Procument"  />Procument</option>
            <option value="Other"  />Others</option>
        </select>   
        <br><br>
        Others:<input type="text" name="client_details1" value="rrrrrr" id="client_details1" disabled/>
        <br>
        </div>
        <br>
        <input type="submit" name="submit" value="Submit"/>
    </form>     
</body>

暂无
暂无

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

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