<body style=" background-image: url(image/bk8.gif); background-size: cover; background-repeat: no-repeat; color: #FF1493;"> <form action="JSPshiyan/shiyan1/homepage.html" method="post"> <div class="container" > <h1 style="font-size:40px;text-align:center; text-color: #FF1493">Login</h1> <div class="input-group"> <label id="username-label">请输入用户名:</label> <input type="text" id="username" name="username"> </div> <div class="input-group"> <label>请你输入密码:</label> <input type="password" id="password" name="password"> </div> <div class="input-group"> <label>选择用户类型:</label> <select id="user-type" name="user-type" onchange="showAdminInput()" style="width: 320px;"> <option value="normal">普通用户</option> <option value="admin">管理员</option> </select> </div> <button class="login-btn" type="submit" id="login-btn" onclick="login()" style="height: 35px; font-size:25px;text-align:center;display: flex; justify-content: center; align-items: center;">GO</button> </div> </form>怎么设置点登陆进入另一个html网页
时间: 2023-07-19 07:41:37 浏览: 111
cka-exam-dicas-em-portugues:Linux Foundation CKA考试技巧库
你可以将表单的 "action" 属性设置为你要跳转的网页的 URL,例如:
```
<form action="path/to/your/homepage.html" method="post">
```
这将在表单提交后跳转到指定的页面。请确保该文件路径正确,并且该文件与当前页面位于相同的目录或子目录中。另外,你还需要在 "method" 属性中指定表单提交的 HTTP 方法,例如 "post" 或 "get"。提交后,你可以在目标页面中使用表单中提交的数据。
阅读全文