我有这段代码,并且在除 IE 之外的所有其他浏览器中运行良好。什么也没发生,我也参考了这个链接IE image caching with jQuery form: Force image reloading then also not working
//jquery.form.js version: 3.10 .
$(document).ready(function () {
$('#imageuploadform1').live('change', function () {
var counter = 0;
$("#preview").html('');
$("#preview").html('<img src="loader.gif?c=' + counter + '" alt="Uploading...."/>');
counter++;
$("#imageform").ajaxSubmit({
target: '#preview'
});
});
});
我怎么解决这个问题