博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
form表单
阅读量:6265 次
发布时间:2019-06-22

本文共 2627 字,大约阅读时间需要 8 分钟。

今天在云和学院学了form表单

html表单

HTML表单是用于搜集用户输入的
HTML表单都扩在一对form标签中
<form>的常用属性
◦action  表示提交的目标服务器
◦method  提交的方法get、post
◦get(默认,以url提交,就是以地址栏的方式提交)
◦post(通过报文提交)
文本框标签
◦<input type = “text“ />
密码框标签
◦<input type = “password” />
◦请输入密码:<input type="password" name="pwd" value="" /><br />
文本域标签
◦<textarea>内容</textarea>
◦属性rows(行)和cols(列)
◦<textarea>哈哈</textarea>
提交按钮标签
◦<input type=“submit” />
◦<input type="submit" name="btn" value="提交" /><br />
重设按钮标签
◦<input type=“reset” />
按钮标签
◦<input type=“button” />
◦<input type="button" value="按钮" οnclick="alert('不要乱按')" />
图像标签
◦<input type=“image” />

复选框标签

◦<input type=“checkbox” />
◦<input type=“checkbox” name=“ch1” value=“chone” checked=”checked“  />文字
单选按钮签
◦<input type=“radio” />input type=“radio” name=“ra1” value=“raOne” checked=“checked“ />男(默认加checked=“checked”)
文件选择标签
◦<input type=“file” />
◦<input type=“file” name=“f1” value=“fOne” />
 
 
 
 
 

数字
范围
颜色
电话号码
日期
时间
隐藏
url
搜索框

 

转载于:https://www.cnblogs.com/songfang/p/4135812.html

你可能感兴趣的文章
RedisHelper帮助类
查看>>
js进阶 10-1 JQuery是什么
查看>>
Hadoop生态圈-Flume的组件之自定义拦截器(interceptor)
查看>>
orcale查询表之间的关联关系
查看>>
关于pythoh面向过程开发人员三步转面向对象的补充,再加一步,四步走战略。转面向对象也可以有固定公式。...
查看>>
SVN设置必须锁定
查看>>
(Apache)ab 压力测试 简单使用
查看>>
程序包com.sun.image.codec.jpeg不存在解决方法
查看>>
Linux也有后悔药,五种方案快速恢复你的系统
查看>>
OpenLDAP在win2008上安装配置
查看>>
根据id查询所有子节点/父节点,mysql 以及ssm前后台处理流程
查看>>
如何提交内核补丁--checkpatch.pl使用【转】
查看>>
MFC程序显示控制台输出
查看>>
网易博客挂了,转一篇以前的文章过来纪念一下吧。。
查看>>
三角形(css3)
查看>>
Cgroups 与 Systemd
查看>>
java三大框架实现任务调度——IRemindService
查看>>
(Z)MySQL变量的使用
查看>>
浅谈命令查询职责分离(CQRS)模式
查看>>
洛谷P1481 魔族密码(LIS)
查看>>