写了个上传图片的手机网页,里面用到了,在手机网页上显示的是这个样子:
它有“拍照”、“图片”和“文件”三个按钮,希望只保留“拍照”和“图片”,去掉“文件”,该如何实现?
隐藏.按钮样式该怎么写还怎么写。用js或jqeury触发file的click事件。
三个是用一张图片吗?然后用JS打开选择要上传的文件?
如果是的需要改下css的显示位置。把文件的去掉
代码都没有,你要人家怎么帮你。。
.filebox{width:120px;overflow:hidden;position:relative;}/*让部分file不显示*/.filebox input:file{position:absolute;left:0;top:0;z-index:2;opacity:0;}/*透明,绝对定位*/.filebox span{display:block;width:60px;line-height:28px;float:left;}/*模拟按钮*/
<div class="filebox"> <input type="file" /> <span class="camera">拍照</span> <span class="picture">图片</span></div>
三个是用一张图片吗?然后用JS打开选择要上传的文件?
如果是的需要改下css的显示位置。把文件的去掉
没有用到任何图片或样式,就是这么个,手机浏览器解析出来就是那个效果
代码都没有,你要人家怎么帮你。。
斑竹大人,我的代码就是这些:
<html xmlns="http://www.w3.org/1999/xhtml"><body><form method="post" action="/" enctype="multipart/form-data"> <input type="file" name="file" size="60" id="file" /><br /><br /> <input type="submit" value="上传" class="button" /></form> </body></html>
4楼 正解 把file做百分百大小 透明 它的样式是其它模块去做展示
代码都没有,你要人家怎么帮你。。
斑竹大人,我的代码就是这些:
<html xmlns="http://www.w3.org/1999/xhtml"><body><form method="post" action="/" enctype="multipart/form-data"> <input type="file" name="file" size="60" id="file" /><br /><br /> <input type="submit" value="上传" class="button" /></form> </body></html>
代码都没有,你要人家怎么帮你。。
斑竹大人,我的代码就是这些:
<html xmlns="http://www.w3.org/1999/xhtml"><body><form method="post" action="/" enctype="multipart/form-data"> <input type="file" name="file" size="60" id="file" /><br /><br /> <input type="submit" value="上传" class="button" /></form> </body></html>
<html xmlns="http://www.w3.org/1999/xhtml"><body><head><style type="text/css">.uploadimg{width:185px;overflow:hidden;position:relative;}</style></head><form method="post" action="/" enctype="multipart/form-data"> <div class="uploadimg"><input type="file" name="file" size="60" id="file" /><br /><br /></div> <input type="submit" value="上传" class="button" /></form> </body></html>