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>
        爱好 : 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>

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐