为了账号安全,请及时绑定邮箱和手机立即绑定

表单容器输入值问题

表单容器输入值问题

PHP
慕桂英3389331 2023-11-06 15:34:42
HTML 页面中有提供访问权限和撤销访问权限的单选按钮。单击提供访问权限时,它将显示一些选项以从用户处获取值,这在没有蚂蚁问题的情况下工作,与单击撤销访问按钮相同,它将显示一些选项以从用户处获取值。但这里的问题是撤销访问权限也从提供访问单选按钮获取值。知道下面的代码有什么问题吗<html><head>  <script type="text/javascript">    function empty() {      var x;      x = document.getElementById("qx").value;      y = document.getElementById("pwd").value;      if (x == "") {        alert("QX number should not be null");        return false;      };      if (y == "") {        alert("Password should not be null");        return false;      };    }  </script>  <style>    .top {      position: relative;      background-color: #ffffff;      height: 68px;    }        .top1 {      top: 110px;      left: 476px;      position: fixed;      background-color: #ffffff;      height: 70px;    }  </style></head><body>  <script type="text/javascript">    function displayForm(c) {      if (c.value == "1") {        document.getElementById("provideContainer").style.visibility = 'visible';        document.getElementById("revokeContainer").style.visibility = 'hidden';      } else if (c.value == "2") {        document.getElementById("provideContainer").style.visibility = 'hidden';        document.getElementById("revokeContainer").style.visibility = 'visible';      } else {}    }  </script>  <center>    <font color="green">      <h2>Please Select the below option</h2>    </font><br>    <form>      <input value="1" type="radio" name="formselector" onClick="displayForm(this)"></input>      <font size="3" color="orange">Provide Access</font>      <input value="2" type="radio" name="formselector" onClick="displayForm(this)"></input>      <font size="3" color="orange">Revoke Access</font>    </form>
查看完整描述

1 回答

?
波斯汪

TA贡献1811条经验 获得超4个赞

如果您的意思是使用 Javascript 检查 qx 号码和密码是否为空,这是因为您正在撤销中分配输入并提供相同的 id 进行检查。

(id =“qx”和id =“pwd”)

这就是 id 的作用。它应该只在该网站上存在一次。


查看完整回答
反对 回复 2023-11-06
  • 1 回答
  • 0 关注
  • 87 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信