我的 HTML 项目中有一个文本字段,我想将其加密为密码。
所以基本上不是显示在文本字段中:
mypassword
我想让它说:
*********
或类似的东西。所以基本上只是使用户输入的文本不可见。
我该怎么做呢?
我的 HTML 项目中有一个文本字段,我想将其加密为密码。
所以基本上不是显示在文本字段中:
mypassword
我想让它说:
*********
或类似的东西。所以基本上只是使用户输入的文本不可见。
我该怎么做呢?
Use <input type="password" />
这与加密无关,它只是一个表单字段类型,可以使用以下内容:
<input type="password" name="password"/>
但是,上传用户提交时在此处输入的任何内容都将通过 Internet 直接发送,除非您使用带有有效 SSL 证书的 HTTPS,这将加密用户和您的站点之间的所有通信,并且建议用于登录的任何内容.
你正在寻找<input type="password" />
.
请注意,这与加密无关。
You can use < input type="password" >
like this to hide your password with stars.but it is not enough when you upload your password .you should use PHP or something else
只需将其放在您放置文本框的现有代码中
<input type="password" name="password"/>
默认情况下,这不会让您看到您输入的内容并用星号对其进行编码。