核心提示:html input 使用(代码实例)body form action=https://127.0.0.1:8888/index method=GET !-- GET 是值在url处进行连接 --!-...
html input 使用(代码实例)
<body> <form action="https://127.0.0.1:8888/index" method="GET"> <!-- GET 是值在url处进行连接 --> <!--POST 直接发给后台 不在url 处连接 --> <p>zhao long</p> <p> <input type="text" name="user"/> <input type="text" name="email"/> <input type="password" name="pwd" /> <input type="button" value="login"/> <input type="submit" value="submit"/> </p> </form> <br/> <h1>learn</h1> <p> <input type="text" name="user"/> <input type="text" name="email"/> <input type="password" name="pwd" /> <input type="button" value="login"/> <input type="submit" value="submit"/> </p> </body>