我认为.attr和.prop可以互换使用,但是当我尝试使用最新的jQuery时,它并不适用于Anchors。我可能会读documentation错误,但我只是想确保我不会错过任何内容。
<a href="#" id="attr">attr</a>
<a href="#" id="prop">prop</a>
$(function () {
$("#attr").attr("disabled", true); // Expected
$("#prop").prop("disabled", true); // Not the same
});