<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <form action="post"> <p> <span>用户名</span><input type="text"id="username"> </p> <p> <span>密码</span><input type="text"id="password"> </p> <button type="button" οnclick="aaa()">提交申请 </button> <script> function aaa(){ var uname=document.getElementById('username'); var upwd=document.getElementById('password'); console.log(uname.value) console.log(upwd.value) } </script> </form> </body> </html>
表单提交以及加密问题
最新推荐文章于 2024-08-13 07:15:00 发布
本文探讨了在Web开发中如何处理表单提交,并强调了使用JavaScript和ECMAScript进行数据加密的重要性,以保障用户信息安全。
摘要由CSDN通过智能技术生成