用html做一个注册页面,其实个中的写法是因人而异的,只要可以实现想要的理想效果就行。合理的运用还要所用的标签。做一个注册页面是很容易的事情。
<form action = "a.html" method = "post">用户名:<input type = "text" name = "username" id = "username">
<br>
密码:<input type = "password" name = "password" id = "password">
<br>
<input type = "submit" id = "submit" value = "登录">
</form>
<html><head>
<script>
function a(){
window.open("2.html",'_blank')
}
</script>
</head>
<body>
<input type="button" value="按钮" onclick="a()" />
</body>
</html>
用单击事件完成,里面 2.html 就是你要跳的页面名字
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)