form表单中的action属性
form表单中的action属性的值是表单提交给的url,如果我们没有设置action属性,那么默认的表单还是提交给当前页⾯<form action ="register" method ="post">
之间是你的显⽰要提交的表单
</form>
最后的 </form>别忘记,否则点击提交没有反应
错误格式:
<form action = "register" method = "post">
</form>
之间是你的显⽰要提交的表单
这样的话,只是单纯的显⽰了表单,是没有提交表单这个action的,这段就不存在了,所以没有反应
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>注册页⾯</title>
</head>
<body>
<form action ="register" method ="post">
⽤户名:<input type ="text" name ="username"><br>
密码:<input type ="password" name ="password"><br>html中提交表单用什么属性
爱好: LOL<input type="checkbox" name="hobits" value="lol">
DOTA<input type="checkbox" name="hobits" value="dota"><br>
<input type="submit" value="注册">
</form>
</body>
</html>
```java
<form action ="register" method ="post">
。。。。。。
</form>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论