h5上传格式设置,frameset使用方法

来源:互联网 发布:php h5 微信支付接口 编辑:程序博客网 时间:2024/04/30 10:56

可以直接设置input标签的accept属性来限制上传文件的类型

<input type="file" accept="application/msword" ><br><br>accept属性列表<br>

1.accept=”application/msexcel”
2.accept=”application/msword”
3.accept=”application/pdf”
4.accept=”application/poscript”
5.accept=”application/rtf”
6.accept=”application/x-zip-compressed”
7.accept=”audio/basic”
8.accept=”audio/x-aiff”
9.accept=”audio/x-mpeg”
10.accept=”audio/x-pn/realaudio”
11.accept=”audio/x-waw”
12.accept=”image/gif”
13.accept=”image/jpeg”
14.accept=”image/tiff”
15.accept=”image/x-ms-bmp”
16.accept=”image/x-photo-cd”
17.accept=”image/x-png”
18.accept=”image/x-portablebitmap”
19.accept=”image/x-portable-greymap”
20.accept=”image/x-portable-pixmap”
21.accept=”image/x-rgb”
22.accept=”text/html”
23.accept=”text/plain”
24.accept=”video/quicktime”
25.accept=”video/x-mpeg2”
26.accept=”video/x-msvideo”

如果限制上传的文件为图片格式,则可以直接写成:accept = ‘image/*’;

frameset 使用方法<frameset rows="76,*" framespacing="0" border="0">    <frame src="top.html" id="header-frame" name="header-frame" frameborder="no" scrolling="no">    <frameset cols="180,*" framespacing="0" border="0" id="frame-body">        <frame src="menu.html" id="menu-frame" name="menu-frame" frameborder="no">        <frame src="main.html" id="main-frame" name="main-frame" frameborder="no">    </frameset></frameset>
0 0
原创粉丝点击