Lesson02_04 表单标签(2)
选择上传文件:<input type="file">
要将method设置为post.将enctype=multipart/form_date代码如下:<form> <input type="file"> </form> | 效果如下: |
在表单上创建一个图像文件:<input type="image">
没有value属性,图像可以代替提交按钮,同时还提交单击鼠标时的XY坐标代码如下:
<input type="image" name="" src="">
在表单上创建一个下拉列表框:<select></select><option></option>
<option>中的value用于设置传送的内容,如不设则为<option></option>中的内容代码如下:<form><select><option>中国</option><option>小日本</option><option>老美</option></select></form> | 效果如下: 中国 小日本 老美 |
在表单上创建一个多行输入的文本区:<textarea></textarea>
没有value属性代码如下:<textarea cols=20 rows=10>请输入内容</textarea> | 请输入内容 |
在表单上创建一个多行输入的文本区:<label>
可以用这个标签来设定快捷键代码如下:<form><label>姓名:</label><input type="text"></form> | 效果如下: 姓名: |
相关推荐
wcqwcq 2020-07-04
TONIYH 2020-06-11
yhginny 2020-04-20
nicepainkiller 2020-05-12
Lius 2020-05-05
longshengguoji 2020-02-13
ajaxtony 2020-02-03
HSdiana 2019-12-15
taiyanghua 2019-12-02
sunnyishere 2014-01-22
86580599 2019-09-23
shumark 2014-05-29
爱好HtmlCssJs 2019-10-28
shumark 2014-07-07
AngelicaA 2015-03-14
81751330 2015-03-10
kentrl 2016-05-03
84403067 2017-04-11
rujinshi 2017-06-12