为了账号安全,请及时绑定邮箱和手机立即绑定

如何检测何时在文件输入上单击了取消?

如何检测何时在文件输入上单击了取消?

森栏 2019-10-18 14:04:41
如何检测用户何时使用html文件输入取消文件输入?onChange让我检测他们何时选择文件,但我也想知道他们何时取消(关闭文件选择对话框而不选择任何内容)。
查看完整描述

3 回答

?
元芳怎么了

TA贡献1798条经验 获得超7个赞

/* Tested on Google Chrome */

$("input[type=file]").bind("change", function() {

    var selected_file_name = $(this).val();

    if ( selected_file_name.length > 0 ) {

        /* Some file selected */

    }

    else {

        /* No file selected or cancel/close

           dialog button clicked */

        /* If user has select a file before,

           when they submit, it will treated as

           no file selected */

    }

});


查看完整回答
反对 回复 2019-10-18
  • 3 回答
  • 0 关注
  • 423 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信