html结构样式如下:
复制代码 代码如下:
<div class=”中山台风最新消息addpic”>
<button>添加图片</button>
<form>
<input id=”logoimg” class=”addlogo” type=”file” multiple accept=”image/*” name=”logo”>
</form>
</div>
<img id=”showlogo” src=”” alt=””>
从样式上说应不显示input元素的输入框,这时需将input设置为透明样式,然后将其覆盖到button元素上方,这时方可实现点击button上传图片。将accepted设置为“image/*”,则只允许图片类文件上传。
css样式如下
复制代码 代码如下:
.addpic{
position:rela嘴巴起泡tive;
margin-left:100px;
width:95px;
height:30px;
}
.addlogo {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0);
cursor: pointer;
fon厦门华天t-size: 30px;
opacity: 0;
position: absolute;
right: 0;
top: 0;
z-index: 10;
}
js代码
复制代码 代码如下:
function readfiles(evt){
var files=evt.target.files;
if(!files){
console.log(“the file is invaild”);
return;
}
for(var i=0, file; file=files[i]; i++){
var imgele大学体测成绩计算标准=new image();
var thesrc=window.url.createobjecturl(file);
imgele.src=thesrc;
imgele.onload=function(){
$(“#showlogo”).attr(“src”,this.src);
}
}
}
复制代码 代码如下:
$(document).ready(function()开平方法{
$(“#logoimg”).change(function(e){
readfiles(e)
});
});
本文发布于:2023-04-06 15:59:16,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/81d04d1500efabfed6aea674d3ef2659.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:html5读取本地文件示例代码.doc
本文 PDF 下载地址:html5读取本地文件示例代码.pdf
留言与评论(共有 0 条评论) |