Heim >Web-Frontend >HTML-Tutorial >HTML5-表单的创建_html/css_WEB-ITnose

HTML5-表单的创建_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:46:441226Durchsuche

, ,,


<!DOCTYPE html><html><head lang="en">    <meta charset="UTF-8">    <title>表单</title></head><body>    <form>        用户名:        <input type="text">        <br/>        密  码:        <input type="password" ">        <!-- 文本-->        <br/>        你喜欢的水果有?        <br/>        苹果<input type="checkbox">        西红柿<input type="checkbox">        香蕉<input type="checkbox">        鸭梨<input type="checkbox">        <!-- 复选框-->        <br/>        请选择你的性别:        <br/>        男:<input type="radio" name="sex">        女:<input type="radio" name="sex">        <!-- 单选按钮-->        <br/>        请选择你常用的网站:        <!-- 下拉菜单,select:选择,option:选项-->        <select>            <option>www.jikexueyuan.com</option>            <option>www.baidu.com</option>            <option>www.googl.com</option>            <option>www.qq.com</option>            <option>www.yy.com</option>        </select>        <br/>        <!-- 按钮:type="button" value="按钮!":类型-按钮,值-按钮。-->        <input type="button" value="按钮!">        <input type="submit" value="提交.">    </form>    <!-- textarea:文本域,cols:列,rows:行-->    <textarea cols="30" rows="30">请在此填写个人信息:</textarea></body></html>

 

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn