美文网首页
点击按钮后跳转到php网页

点击按钮后跳转到php网页

作者: Tommiy | 来源:发表于2019-11-01 09:34 被阅读0次

<!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>

< a  href = "路径" >< input  type = "button" / > </ a >

在按钮外面扩一个a标签就好了

相关文章

网友评论

      本文标题:点击按钮后跳转到php网页

      本文链接:https://www.haomeiwen.com/subject/rmxfbctx.html