recherche

Maison  >  Questions et réponses  >  le corps du texte

php - IE系列浏览器不能兼容jQuery版的change如何解决,有代码,求指点

jQuery(function(){
  jQuery("#upload").change(function(){
    jQuery('#uploadForm').submit();
  })
})

在ff 和chrome下都能触发事件,但是IE仍然无动于衷

PHPzPHPz2831 Il y a quelques jours352

répondre à tous(1)je répondrai

  • PHP中文网

    PHP中文网2017-04-10 14:44:24

    用.on
    https://api.jquery.com/on/

    $("#test").on('change', function() {
        alert('ok');
    });
    

    répondre
    0
  • Annulerrépondre