suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - jQuery('#confirm').removeAttr('disabled');这样的写法不能兼容IE系列,请给出兼容任何浏览器写法?

jQuery('#confirm').removeAttr('disabled');

巴扎黑巴扎黑2829 Tage vor387

Antworte allen(3)Ich werde antworten

  • 巴扎黑

    巴扎黑2017-04-10 14:24:52

    jQuery('#confirm').attr('disabled',false);

    Antwort
    0
  • PHP中文网

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

    $(this).prop('disabled', false);
    

    Antwort
    0
  • 阿神

    阿神2017-04-10 14:24:52

    1、jQuery('#confirm').attr('disabled',false);
    2、jQuery('#confirm')[0].disabled = false;

    Antwort
    0
  • StornierenAntwort