- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
在 HTML 页面上,有两个使用 img 元素设置的图像。我想通过浏览 pc 目录来更改每个图像。没有数据库。更改图片后,如果重新加载页面,将显示旧图片。即每个图像下都有输入选项。如果我想更改第二张图片,那么我将单击第二张图片下的“选择文件”选项,这将打开用于选择单个图片的窗口。
我得到了一段代码。
<input type='file' accept='image/*' onchange='openFile(event)'>
<img id='output' width=20>
<input type='file' accept='image/*' onchange='openFile(event)'>
<img id='output' width=20>
<input type='file' accept='image/*' onchange='openFile(event)'>
<img id='output' width=20>
<script>
var openFile = function(event) {
var input = event.target;
var reader = new FileReader();
reader.onload = function(){
var dataURL = reader.result;
var output = document.getElementById('output');
output.src = dataURL;
};
reader.readAsDataURL(input.files[0]);
};
</script>
使用此代码,我可以只为一个 img 元素上传图像。但是如果我想将它用于两个 img 元素,如果我将 id 'output' 更改为 class 'output' 则它不起作用。我需要了解它的原因以及针对多个图像的可能解决方案。
最佳答案
下面的代码显示:
片段说明:
它是引擎盖下的所有文件输入(更改 hidden
类以显示它们),它们被隐藏只是因为它看起来更好。
var container = document.getElementById('img_container');
var placeholder = document.getElementById('placeholder');
// utility function doing both createElement and setAttributes
function create(elementName, attributes) {
var elem = document.createElement(elementName);
if (typeof attributes === 'object') {
Object.keys(attributes).forEach(function(attributeName) {
elem.setAttribute(attributeName, attributes[attributeName]);
});
}
return elem;
}
// load a file image as a data url and callback with this data url
function loadImage(file, callback) {
var reader = new FileReader();
reader.onload = function(){
var dataURL = this.result;
callback(dataURL);
};
reader.readAsDataURL(file);
}
// self explainatory
function createAndInsertNewImageBlock(id, dataURL) {
var output = create('div', { 'class': 'img_block' });
// image label, linked to the file input through their for/id attributes
var label = create('label', { 'for': id, 'class': 'img_label' });
var img = create('img', { 'class': 'image', src: dataURL });
label.appendChild(img);
output.appendChild(label);
// single file input triggered by the image label, it is hidden
var input = create(
'input',
{
'type': 'file',
'class': 'hidden',
'accept': 'image/*',
id: id
}
);
// load single data url on change and change the image src
input.addEventListener('change', function() {
loadImage(this.files.item(0), function(data) {
img.src = data;
});
});
output.appendChild(input);
// delete block button
var cross = create('div', { 'class': 'cross' });
cross.addEventListener('click', function() {
output.remove();
});
output.appendChild(cross);
// insert new image block just before the '+' placeholder
container.insertBefore(output, placeholder);
}
// handler for the onChange event of the placeholder's file input
function openFiles(evt) {
var files = evt.target.files;
for (let i = 0; i < files.length; i++) {
var file = files.item(i);
loadImage(file, function(dataURL){
var count = container.children.length;
// lame unique id generation for linking label to input
var id = 'img(' + count + '/' + (Date.now()).toString(16) + ')' + file.name;
createAndInsertNewImageBlock(id, dataURL);
});
};
};
#img_container {
display: flex;
align-items: center;
flex-wrap: wrap;
}
.image {
width: 150px;
margin: 5px;
}
.hidden {
position: absolute;
display: none;
left: -9999px;
}
.img_block {
position: relative;
}
.img_label {
display: block;
cursor: pointer;
}
.plus {
width: 100px;
height: 100px;
font-size: 50px;
font-weight: bold;
display: flex;
align-items: center;
justify-content: center;
color: #2060FF;
}
.plus:after {
content: '+';
}
.cross {
width: 15px;
height: 15px;
font-size: 20px;
font-weight: bold;
background-color: rgba(255,255,255,0.3);
display: flex;
align-items: center;
justify-content: center;
color: #FF2060;
position: absolute;
top: 5px;
right: 5px;
cursor: pointer;
}
.cross:hover {
background-color: rgba(255,255,255,0.6);
}
.cross:after {
content: 'x';
}
<div id="img_container">
<div id="placeholder">
<label class="img_label" for="placeholder_input">
<div class="plus"></div>
</label>
<input type='file' id="placeholder_input" class="hidden" accept="image/*" onchange='openFiles(event)' multiple>
</div>
</div>
关于javascript - 如何加载多个文件图像作为数据 url 并在之后单独更改它们,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55312819/
Java 专家需要您的帮助。 今天我在一次采访中被问到这个问题,但我无法解决。所以我需要一个解决方案来解决这个问题; 反转字符串 Input : Hello, World! Output : oll
目标:单击按钮并将成分作为单独的项目添加到数组中。 当前设置: 这给出:蓝莓芒果柠檬汁 然后我希望能够通过单击按钮将成分作为单独的项目添加到数组中: var allI
如何编写正则表达式来匹配它(参见箭头): "this is a ->'' this is a "test' there is another "test' 第二种情况 /\b'/ Regex Demo
我有一个数组,其中包含有限数量的项目。我想随机删除项目,直到所有项目都被使用过一次。 示例 [1,2,3,4,5] 使用了随机数 5,所以我不想再这样了。使用了随机数 2,所以我不想再这样了。等等..
首先,抱歉,如果这太主观了,我只是不知道还能怎么问/去哪里问。 无论如何,鉴于我最近的所有问题,我准备很快发布一个 Android 应用程序,并且大部分测试都是在我的手机 Droid 上完成的。我真的
这可能不是这个问题的正确位置,如果不合适请随意移动它。我标记为 Delphi/Pascal 因为这是我在 atm 中工作的内容,但这可能适用于我猜的所有编程。 无论如何,我正在做一些代码清理,并考虑将
我像这样分隔了其余 api 的路由。有没有更好的方法来组织路由器?还是我现在的做法没问题? app.js app.use('/api/auth',auth); 应用程序/ Controller /au
我在 2 个单独的工作表中包含以下数据: 表1: A B C D a ff dd ff ee b 12 10 10 12 表2: A B C
我正在使用 jQuery,并在位于单独 HTML 文件中的表中获取了几行。单击时,每一行都会成功重定向到本地 HTML 文件。 (使用window.location) 我想要实现的目标 我想要完成的是
我有重叠背景图像的问题,当它们重叠时会导致阴影比不重叠时更暗,从而产生不均匀的阴影。 我有一个高度灵活的盒子,带有一些透明的背景图像和阴影以创建漂亮的边框。盒子本质上是 3 个元素。 您可以在此处找到
按照正常的微服务框架,我们希望将每个微服务放入其自己的 git 存储库中,然后为 Service Fabric 项目创建一个存储库。当我们更新其中一个微服务时,Service Fabric 项目将仅重
我想将多个片段嵌入到一个指令中。这是我的设置方式。 Everyone Development (3)
我希望在保留原件的同时将多个文件 gzip 到一个目录中(到多个 .gz 文件中)。 我可以使用这些命令来处理单个文件: find . -type f -name "*cache.html" -exe
有没有办法分别知道每个 Eclipse 插件消耗了多少内存? 最佳答案 进行堆转储并使用例如分析它Eclipse Memory Analyser . 如需更多信息,请参阅 Analyzing Equi
我们使用cusrom插件并以这种方式定义脚本(这是一个近似的伪代码): //It is common part for every script (1) environments { "env1"
我在控制台应用程序中托管了一个集线器,并有一个 WPF 应用程序连接到它。它工作得很好。然后我将集线器移到一个单独的项目中,并将主机的引用添加到新项目中。现在我收到 500 错误,没有其他详细信息。
是否可以在单独的 JAR 文件中为 JavaBean 构建类?具体来说,JavaBean 在一个 JAR 文件中具有 Bean 和 BeanInfo 类,而自定义属性编辑器类位于另一个 JAR 文件中
好的,所以我有一个 MAF 应用程序,它在单独的应用程序域中加载每个插件。这非常适合我的需要,因为它允许我在运行时动态卸载和重新加载我的插件。 问题是,我需要能够在子应用域中处理未处理的异常,捕获它,
在参加在线数据库类(class)(针对初学者)时,我注意到一个问题,我必须查找涉及...至少两个不同值的查询...例如, ELMASRI 书中的 COMPANY 数据库指出:查找至少从事两个不同项目的
(首先:我已经尝试了涉及边距、边框等的所有选项。) Link to problematic page. Link to similarly constructed, non-problematic p
我是一名优秀的程序员,十分优秀!