当前位置: 首页 > 工具软件 > inputfile > 使用案例 >

input file表单, 判断用户是否选中文件,监听input file 的 choose事件

葛阳
2023-12-01

我们有的时候   还是会有这样的需求  等用户选中文件之后 触发加载框 做一些操作啥的

其实还是很简单地

监听input的change事件  

判断value 是否为空

$('input').on('change', function () {
    
    if (this.value != "") {   // 判断用户是否选中了文件
      console.log('选中了文件')
    } else {
        console.log('用户取消了文件');
    }

}

关注我 持续更新前端知识  

 类似资料: