当前位置:Gxlcms > JavaScript > jQuery上传图片前本地优先预览

jQuery上传图片前本地优先预览

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

这次给大家带来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.js element-ui tree树形控件如何修改iview

以上就是jQuery上传图片前本地优先预览的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行