The W3C recommends to set that attribute to disabled="disabled", so:
$('#submit_postcode').attr('disabled', 'disabled');
Re-enabling can be done by removing the attribute:
$('#submit_postcode').removeAttr('disabled');
Setting the attribute to any value causes it to be disabled, even .attr('disabled', 'false'), so it has to be removed.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…