选择图像(但尚未上传)时更改输入类

Change the input class when an image is selected (But not yet uploaded)

本文关键字:输入 图像 选择      更新时间:2023-09-26

我有一个简单的图片上传器(前端}

<input type="file" class="imgupload" name="file" />

但是我在div中用填充物和背景图像制作了它,并隐藏了溢出所以背景图像是可见的,但表单不是,表单仍然可以使用,但它看起来像一个图像

是否可以在选择图像时更改类,以便可以更改背景图像?如果是这样,怎么能做到这一点?如果不是,有没有另一种方法可以实现类似的东西?提前致谢

只需将其绑定到change事件:

$("input[name=file]").change(function() {
    $(this).addClass("someClass");
});