suchen

Heim  >  Fragen und Antworten  >  Hauptteil

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

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

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

PHPzPHPz2831 Tage vor350

Antworte allen(1)Ich werde antworten

  • PHP中文网

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

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

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

    Antwort
    0
  • StornierenAntwort