当前位置:Gxlcms > JavaScript > jQuery实现带有本地预览功能的图片上传

jQuery实现带有本地预览功能的图片上传

时间:2021-07-01 10:21:17 帮助过:5人阅读

这次给大家带来jQuery实现带有本地预览功能的图片上传,jQuery实现带有本地预览图片上传的注意事项有哪些,下面就是实战案例,一起来看一下。

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>jquery上传图片本地预览效果</title>
</head>
<body>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<input id="upload" type="file">
<img id="preview" src="">
<script type="text/javascript">
$('#upload').change(function(){
  // 获取FileList的第一个元素
  alert(document.getElementById('upload').files[0]);
  var f = document.getElementById('upload').files[0];
  src = window.URL.createObjectURL(f);
  document.getElementById('preview').src = src
})
</script>
</body>
</html>

运行效果:

相信看了本文案例你已经掌握了方法,更多精彩请关注Gxl网其它相关文章!

推荐阅读:

vue父组件调用子组件方法总结

vue文件树组件使用(附代码)

以上就是jQuery实现带有本地预览功能的图片上传的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行