CSS 表单_html/css_WEB-ITnose

WBOY
풀어 주다: 2016-06-24 11:15:21
원래의
1079명이 탐색했습니다.

1.表单的工作原理:

 

 

 2.表单的写法:

3.表单的常用代码及表现形式:

<body><form action="http://www.miaov.com/" method="get" target="_blank">提交按钮:<input type="submit" value="提交OK" name="" /><br/><br/>文本框:<input type="text" name="" /><br/><br/>密码框:<input type="password" name="" /><br/><br/>单选按钮:<input type="radio" name="gender" id="a" /><label for="a">男</label><input type="radio" name="gender" id="b" /><label for="b">女</label><br/><br/><!-- checked  默认选中disabled 禁用 -->复选框:<input type="checkbox" name="" disabled />宅<input type="checkbox" name="" disabled />腐<input type="checkbox" name="" />逛街<input type="checkbox" name="" />健身<input type="checkbox" name="" />直排<input type="checkbox" name="" checked/>旅游<input type="checkbox" name="" />美食<br/><br/><hr/>上传:<input type="file" name="" /><br/><br/>图片:<input src="sun.jpg" type="image" name="" /><br/><br/>按钮:<input  type="button" name="" /><br/><br/>重置:<input  type="reset" name="" /><br/><br/>隐藏:<input  type="hidden" name="" /><br/><br/><hr/>下拉选框:<select>    <option>1999</option>  <option>1998</option>  <option selected>1997</option><!-- 默认选中 -->  <option>1996</option>  <option>1995</option></select><br/><br/>文本域:<textarea name="comments" rows="10" cols="48"></textarea><!-- H5新元素 --><input type="number" min="0" max="20"/><!-- 限制只输入数字 --><input type="range" min="0" max="20" step="5"/><!-- 类似number的滑动条,step是步长 --><input type="color" /><!-- 颜色选择器 --><input type="date" /><!-- 日期选择控件 --><input type="email" /><!-- 文本输入,但是在移动浏览器上会得到输入email的定制键盘 --><input type="tel" /><!-- 类似于email,弹出定制键盘 --><input type="url" /><!-- 如上 --></form>
로그인 후 복사

 

 

 

4.表单css重置:

form{margin:0;}
input{margin:0;padding:0;}
select{margin:0;}
textarea{margin:0; padding:0;resize:none; overflow:auto; outline:none;}

5.name的工作方式:

6.get和post的区别:

 

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!