当前位置:网站首页>Download files and preview pictures
Download files and preview pictures
2022-07-02 13:16:00 【1900's 88 keys】
Download files
a The label specifies download Property will download the link to jump , The premise is homology
<h2> Front-end blob object --- Download files && Preview of the picture </h2>
<br>
<a id="btn"> Download the file </a>
<script> var str = ` <div> <p> Download files </> </div> `; var blob = new Blob([str], {
type: 'text/html' }); btn.onclick = function (e) {
this.setAttribute('download', '123.html'); this.href = URL.createObjectURL(blob); } </script>
Preview of the picture
<input type="file" id="input1">
<input type="file" id="input2">
<script> // Sync input1.onchange = function (e) {
var file = e.target.files[0]; var img = new Image(); img.src = URL.createObjectURL(file) document.body.appendChild(img) } // asynchronous input2.onchange = function (e) {
var file = e.target.files[0]; var img = new Image(); var fileRead = new FileReader(); document.body.appendChild(img) fileRead.onload = function () {
img.src = fileRead.result } fileRead.readAsDataURL(file) } </script>
边栏推荐
- Unity SKFramework框架(十三)、Question 问题模块
- Unity skframework Framework (XVI), package manager Development Kit Manager
- Unity SKFramework框架(十八)、RoamCameraController 漫游视角相机控制脚本
- Answer: can the audio be set to on by default during easydss video on demand?
- Jerry's watch ringtone audition [article]
- (7) Web security | penetration testing | how does network security determine whether CND exists, and how to bypass CND to find the real IP
- 【youcans 的图像处理学习课】总目录
- JS逆向之巨量创意signature签名
- Domestic free data warehouse ETL dispatching automation operation and maintenance expert taskctl
- 无向图的桥
猜你喜欢
VIM super practical guide collection of this one is enough
Three methods of finding LCA of the nearest common ancestor
Apply lnk306gn-tl converter, non isolated power supply
Japan bet on national luck: Web3.0, anyway, is not the first time to fail!
Js3day (array operation, JS bubble sort, function, debug window, scope and scope chain, anonymous function, object, Math object)
leetcode621. 任务调度器
Domestic free data warehouse ETL dispatching automation operation and maintenance expert taskctl
Redis数据库持久化
Unforgettable Ali, 4 skills, 5 hr additional written tests, it's really difficult and sad to walk
Unity SKFramework框架(十八)、RoamCameraController 漫游视角相机控制脚本
随机推荐
VIM super practical guide collection of this one is enough
Unity SKFramework框架(十四)、Extension 扩展函数
屠榜多目标跟踪!BoT-SORT:稳健的关联多行人跟踪
Ntmfs4c05nt1g N-ch 30V 11.9a MOS tube, pdf
Tencent three sides: in the process of writing files, the process crashes, and will the file data be lost?
国内首款、完全自主、基于云架构的三维CAD平台——CrownCAD(皇冠CAD)
文件的下载与图片的预览
Jerry's watch gets the default ringtone selection list [article]
Unity skframework framework (XIX), POI points of interest / information points
Three methods of finding LCA of the nearest common ancestor
Daily question: 1175 Prime permutation
Uniapp develops wechat applet Tencent map function and generates sig signature of location cloud
Unity skframework framework (XIII), question module
口袋奇兵点评
Unity skframework framework (XVIII), roamcameracontroller roaming perspective camera control script
numpy数组计算
日本赌国运:Web3.0 ,反正也不是第一次失败了!
Linear DP acwing 899 Edit distance
Unity skframework framework (XXI), texture filter map resource filtering tool
Unity SKFramework框架(十七)、FreeCameraController 上帝视角/自由视角相机控制脚本