Home  >  Q&A  >  body text

javascript - under ie8 jquery input file 无值

Under IE8, use jquery1.12.4 to listen to the change event <input type="file" id="logo"/> Unable to obtain the value.


$('#logo').on('change', function () {
    var files = $(this).prop('files');
    console.log(files); // undefined
});
天蓬老师天蓬老师2732 days ago730

reply all(1)I'll reply

  • 我想大声告诉你

    我想大声告诉你2017-05-19 10:18:37

    Try this.files directly

    reply
    0
  • Cancelreply