当前位置:网站首页>input显示当前选择的图片
input显示当前选择的图片
2022-07-04 05:16:00 【老板娘来碗面】
1.jsp代码
<div class="lf salebd">
<a href="#">
<img src="images/ad20.jpg" id="img" width="100" height="100"/></a></div>
2.js代码
$(function () {
$("#file").change(function () {
if (this.files.length) {
let file = this.files[0];
let reader = new FileReader();
//新建 FileReader 对象
reader.onload = function () {
// 当 FileReader 读取文件时候,读取的结果会放在 FileReader.result 属性中
document.querySelector('#img').src = this.result;
document.querySelector('#text').innerHTML = this.result;
};
// 设置以什么方式读取文件,这里以base64方式
reader.readAsDataURL(file);
}
})
})
3.效果
边栏推荐
- flink1.13 sql基础语法(二)join操作
- ansys命令
- What is MQ?
- BUU-Real-[PHP]XXE
- [matlab] matlab simulates digital baseband transmission system - digital baseband transmission system
- SQL injection - injection based on MSSQL (SQL Server)
- Introduction To AMBA 简单理解
- [QT] timer
- 十二. golang其他
- 2022 t elevator repair operation certificate examination question bank and simulation examination
猜你喜欢
What are the reasons for the frequent high CPU of ECS?
如何使用postman实现简单的接口关联【增删改查】
2022G2电站锅炉司炉特种作业证考试题库及答案
KMP匹配字符串
[技术发展-25]:广播电视网、互联网、电信网、电网四网融合技术
Integer type of C language
LM小型可编程控制器软件(基于CoDeSys)笔记二十一:错误3703
How to configure static IP for Kali virtual machine
BUU-Crypto-[GXYCTF2019]CheckIn
VB.net GIF(制作、拆解——优化代码,类库——5)
随机推荐
Unity is connected to the weather system
[matlab] matlab simulation modulation system - DSB system
How to use postman to realize simple interface Association [add, delete, modify and query]
[技术发展-25]:广播电视网、互联网、电信网、电网四网融合技术
Supplement the JS of a video website to decrypt the video
LM小型可编程控制器软件(基于CoDeSys)笔记二十二:错误4268/4052
Unity2D--人物移动并转身
如何使用postman实现简单的接口关联【增删改查】
[matlab] matlab simulates digital baseband transmission system - digital baseband transmission system
Simulated small root pile
Letter meaning and parameter abbreviation of optical module Daquan
TCP state transition diagram
[paper summary] zero shot semantic segmentation
云原生架构实战案例及优化解决方案
Flink1.13 SQL basic syntax (I) DDL, DML
Thread pool: use thread pool to optimize query speed
c语言经典指针和数组笔试题解析
Enterprise level log analysis system elk (if things backfire, there must be other arrangements)
KMP match string
Simulink与Arduino串口通信