HTML登陸后跳轉指定頁面是一種常用的Web開發技術,通過簡單的代碼實現用戶登錄后直接跳轉到指定頁面,提高用戶體驗和便利性。
<html> <head> <title>登陸跳轉頁面</title> </head> <body> <form action="login.php" method="post"> <label for="username">用戶名</label> <input type="text" id="username" name="username"><br> <label for="password">密碼</label> <input type="password" id="password" name="password"><br> <input type="submit" value="登陸"> </form> <?php // 登陸驗證 if($_POST['username']=='admin'&&$_POST['password']=='123456'){ // 跳轉到指定頁面 header('Location: http://www.example.com/welcome.php'); exit(); } ?> </body> </html>
以上代碼實現了一個簡單的登陸頁面,并通過PHP代碼實現了登陸驗證和跳轉頁面。其中header()函數可以實現頁面跳轉,exit()函數可以使頁面中止執行。
上述代碼只是一個示例,實際應用中需要根據具體需求進行修改。此外,在實際應用中還需要考慮一些安全性問題,如防止SQL注入攻擊等。