点击按钮后跳转到php网页

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>login</title>
    <script>
        function login(){
            window.location= "2048validate.php";
        }
    </script>
</head>
<body>
<form action="result.php" method="post">
号码: <input type="text" name="username" ><br>
密码: <input type="text" name="password" ><br>
<input type="submit" value="注册">
<button type="button" onclick="login()">登录</button>

</form>
</body>
</html>
posted @ 2017-08-14 22:37  云胡同学  阅读(728)  评论(0编辑  收藏  举报