
本文旨在解决 Bootstrap 4 中动态添加的 input type="file" 文件选择框,在选择文件后无法正确显示文件名的问题。通过使用事件委托,我们可以确保即使是动态生成的元素也能正确响应 change 事件,从而实现文件名显示功能。
在使用 Bootstrap 4 创建文件上传表单时,经常需要动态添加文件输入框。然而,直接绑定 change 事件到动态生成的 input type="file" 元素上,通常无法正常工作。这是因为在页面加载时,这些元素还不存在,所以事件监听器无法绑定到它们。解决这个问题的方法是使用事件委托。
事件委托的原理
事件委托利用了事件冒泡的特性。当一个事件发生在一个元素上时,它会沿着 DOM 树向上冒泡,直到根元素。我们可以将事件监听器绑定到一个静态存在的父元素上,然后通过判断事件目标(event.target)来确定实际触发事件的元素。
实现步骤
HTML 结构: 确保你的 HTML 结构包含一个静态存在的父元素,用于包裹动态添加的 input type="file" 元素。例如,可以使用一个 div 元素,并为其设置一个唯一的 ID。
是一款白色清新风格的wordpress博客主题,支持响应式自适应。前前后后经历了两年的改版与优化,并添加了后台配置文件,适合文章博客。相信这种优秀主题的免费,会带来继guo.lu以来又一波换主题热潮。 主题特点 1、全响应式自适应,移动端显示效果良好; 2、首页全屏背景切换(内置 Backstretch 插件); 3、支持二级下拉菜单; 4、侧边栏可定制个人信息简介,可开启滚动状态栏
328
<div class="form-group">
<label>Image</label>
<div class="input-group form-group" id="image_box">
<div class="custom-file">
<input type="file" name="image[]" accept="image/*" class="custom-file-input" id="exampleInputFile" required>
<label class="custom-file-label" for="exampleInputFile">
Choose Image...
</label>
</div>
<div class="input-group-append">
<button class="btn btn-primary" type="button" onclick="add_more_images()">Add Another Image</button>
</div>
</div>
</div>JavaScript 代码: 使用 jQuery 的 on() 方法,将 change 事件监听器绑定到静态父元素上。在事件处理函数中,使用 event.target 获取触发事件的 input type="file" 元素,并更新其相邻的 label 元素的内容。
var total_image = 1;
function add_more_images() {
total_image++;
var html = '<div class="form-group" id="add_image_box' + total_image + '"><label>Image</label><div class="input-group form-group" ><div class="custom-file"><input type="file" name="image[]" accept="image/*" class="custom-file-input changeme" id="exampleInputFile" required><label class="custom-file-label" for="exampleInputFile">Choose Image...</label></div> <div class="input-group-append"><button class="btn btn-danger" type="button" onclick=remove_image("' + total_image + '")>Remove Image</button></div></div></div>';
jQuery('#image_box').append(html); // Use append instead of after
}
$(document).ready(function() {
$('#image_box').on('change', 'input[type="file"]', function(e) {
var fileName = e.target.files[0].name;
$(this).next().html(fileName); // Update the label with the file name
});
});代码解释:
注意事项
总结
通过使用事件委托,我们可以轻松地解决 Bootstrap 4 中动态添加的 input type="file" 文件选择框无法正确显示文件名的问题。这种方法不仅适用于文件选择框,也适用于其他需要动态添加元素的场景。理解事件委托的原理,可以帮助你编写更健壮、更灵活的 JavaScript 代码。
以上就是Bootstrap 4:动态添加的文件输入框显示文件名的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号