jQuery加密密码到cookie的实现代码
(编辑:jimmy 日期: 2024/11/17 浏览:3 次 )
废话不多说了,直接给大家贴代码了,具体代码如下所示:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Insert title here</title> </head> <body> <table> <tr> <th>账号:</th> <td><input type="text" id="username" /></td> </tr> <tr> <th>密码:</th> <td><input type="text" id="password" /></td> </tr> <tr> <td><button onclick="setCookie();">保存</button></td> <td><button onclick="getCookie();">读取</button></td> </tr> </table> </body> <script type="text/javascript" src="/UploadFiles/2021-04-02/jquery.min.js">以上所述是小编给大家介绍的jQuery加密密码到cookie的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
下一篇:微信小程序实战之自定义模态弹窗(8)