在前端页面中创建一个表单,可以使用HTML的<form>
标签,以下是一个简单的示例:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Java(Spring框架)示例</title> </head> <body> <form action="process.html" method="post"> <label for="username">用户名:</label> <input type="text" name="username" id="username" required> <br> <label for="password">密码:</label> <input type="password" name="password" id="password" required> <br> <input type="submit" value="提交"> </form> </body> </html>
在这个示例中,我们创建了一个简单的表单,包含用户名和密码输入框以及提交按钮,表单的action
属性设置为process.html
,表示当用户提交表单时,数据将被发送到名为process.html
的后端处理页面。method
属性设置为post
,表示使用HTTP POST方法提交数据。
还没有评论,来说两句吧...