2

我的 HTML 项目中有一个文本字段,我想将其加密为密码。

所以基本上不是显示在文本字段中:

mypassword

我想让它说:

*********

或类似的东西。所以基本上只是使用户输入的文本不可见。

我该怎么做呢?

4

5 回答 5

2

Use <input type="password" />

于 2013-04-21T14:49:02.440 回答
1

这与加密无关,它只是一个表单字段类型,可以使用以下内容:

<input type="password" name="password"/>

但是,上传用户提交时在此处输入的任何内容都将通过 Internet 直接发送,除非您使用带有有效 SSL 证书的 HTTPS,这将加密用户和您的站点之间的所有通信,并且建议用于登录的任何内容.

于 2013-04-21T14:53:35.340 回答
1

你正在寻找<input type="password" />.

请注意,这与加密无关。

于 2013-04-21T14:43:21.167 回答
0

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

于 2013-04-21T14:51:43.110 回答
0

只需将其放在您放置文本框的现有代码中

<input type="password" name="password"/>

默认情况下,这不会让您看到您输入的内容并用星号对其进行编码。

于 2013-04-21T15:32:49.157 回答