我是php和jquery的新手,我试图在上传之前预览图像,
在这里我还添加了更多功能,如何在上传之前先显示所有图像
这是我的代码,我尝试并遵循了该网址,无法正常工作。
function readURL(input) {
if (input.files && input.files[0]) {
var reader = new FileReader();
reader.onload = function (e) {
$('#blah').attr('src', e.target.result);
}
reader.readAsDataURL(input.files[0]);
}
}
$(function(){
$("#imgInp").change(function(){
readURL(this);
});
$("#add_field").click(function () {
$("#table_container").append($("#temp_div").html());
});
})
.image-upload > input
{
display: none;
}
.image-upload img
{
width: 50px;
cursor: pointer;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<form action="" method="POST" enctype="multipart/form-data">
<table id="table_container">
<tr>
<th><label class="lbl-header">My Hobies</label></th>
<th><label class="lbl-header">Image</label></th>
</tr>
<tr>
<td><input type="text" name="hobies[]" value=""></td>
<td>
<div class="image-upload">
<label for="file-input">
<img src="upload.jpg"/>
</label>
<input id="file-input" id="imgInp" type="file" name="image[]" />
<img src="#" alt="image" id="blah">
</div>
</td>
</tr>
</table>
<input type="submit" name="submit" value="Submit">
</form>
感谢您的时间和帮助
答案 0 :(得分:0)
它适用于第一个吗?
如果是,那么您的问题是,在加载js时,新图像上传字段基本上不存在,因此新字段不会考虑更改。
第二,您正在使用ID来执行此操作,这是错误的,您只能拥有一个ID,因此您应该使用对类的更改。