您的位置:首页 > Web前端 > HTML

PHP编程之HTML(表单的使用)

2011-07-28 13:32 417 查看
<form>属性:action、method、target、title(类似图片的alt属性,任何标签都可使用)、enctype
<input type="submit">

<input type="reset">

<input type="text">

属性:size、value、maxlength、readonly、disabled
<input type="checkbox">
属性:checked
<input type="radio">

<input type="hidden">

<input type="password">

<input type="button">

<input type="file">

<input type="image">

<select>
<option></option>
</select>
<select>属性:multiple、size、name
<option>属性:value、selected
<textarea></textarea>
属性:cols、rows
<label>
属性:for、accesskey
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: