wowo7741吧 关注:125贴子:15,125
  • 1回复贴,共1

【编程】网页设计真尼玛的难,但是只有越难的高峰人越少~

取消只看楼主收藏回复

蛋疼的代码楼~


IP属地:云南1楼2014-05-28 01:17回复
    表单及表单控件
    代码:
    <html>
    <head>
    <title> 登录页面 </title>
    </head>
    <body>
    <!--action的值应当是提交到哪个页面-->
    <!--method方法制定提交数据的方式,常用的有两种 get、post-->
    <form action="ok.html" method="post">
    <!--name的值可以任意,但是不要使用关键字-->
    用户名:<input type="text" name="username"/>

    密 码 :<input type="password" name="password"/>

    <input type="submit" value="登录系统"/>
    <input type="reset" value="重新填写"/>
    </form>
    </body>
    </html>


    IP属地:云南2楼2014-05-28 21:28
    回复