Maison > Questions et réponses > le corps du texte
jQuery(function(){
jQuery("#upload").change(function(){
jQuery('#uploadForm').submit();
})
})
在ff 和chrome下都能触发事件,但是IE仍然无动于衷
PHP中文网2017-04-10 14:44:24
用.on
https://api.jquery.com/on/
$("#test").on('change', function() {
alert('ok');
});