gpt4 book ai didi

javascript - 检查输入类型并跳过输入 'password' 字段,同时单击“保存”

转载 作者:行者123 更新时间:2023-12-01 05:45:04 24 4
gpt4 key购买 nike

我有一份表格 - 接下来仅附上其中的一部分。

如果我愿意,我有一个脚本可以将输入密码类型更改为文本。我的问题是,如果我在输入“Password_field”输入类型为“PASSWORD”时单击“更新”,则表单会发送所有字段中的信息。

我想要的是,当“Password_field”输入类型为“PASSWORD”时,表单不会发送“Password_field”输入中的信息 - 跳过它。仅当“Password_field”输入类型为“TEXT”时,我才想保存此特定字段中的数据。

基本上,我希望表单在任何情况下都能保存所有字段的信息,但如果他的类型为“PASSWORD”,则会跳过“Password_field”输入。

最简单的方法是什么?如何? :)

有什么建议吗?

发送

<?php
$sql = "SELECT DBTABLE, Full_Name, Phone, Password FROM Names WHERE id='" . $id . "'";
$result = $conn->query($sql);
$resultArr = array();
$i = 0;
if (isset($result->num_rows) && $result->num_rows > 0) {
// output data of each row
if ($row = $result->fetch_assoc()) {
$Full_Name = $row["Full_Name"];
$Phone = $row["Phone"];
$Password = $row["Password"];
}
}
}
?>

<form action="" method="POST">
<input type="hidden" name="id" value="id"/>
Full_Name
<input style="margin-top:10px; margin-bottom:15px;" id="Full_Name" type="text" name="Full_Name" value="Full_Name"/>

Phone
<input style="margin-top:10px; margin-bottom:15px;" id="Phone" type="text" name="Phone" value="Phone"/>
-- > Password_field
<input style="margin-top:10px; margin-bottom:15px;" id="Password_field" type="password" name="Password_field" value="***"/> <---

<input type="submit" name="submit" value="Update" style="margin-left: 4px; font-size: 18px;"/>
</form>

最佳答案

您可以在提交之前禁用密码字段。检查输入类型是否为密码,然后禁用它并提交表单。禁用的字段将不会被提交。

关于javascript - 检查输入类型并跳过输入 'password' 字段,同时单击“保存”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27509633/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com