Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
D3.JSで属性を削除できますか?を使用して追加しましたが.attr("disabled", "disabled")、jQueryに似たものを探し.removeAttr("disabled", "disabled");て再度削除します。<button>とに便利です<option>。使用してみました.remove()が、属性ではなくオブジェクト全体が削除されます。
.attr("disabled", "disabled")
.removeAttr("disabled", "disabled");
<button>
<option>
.remove()
のAPIドキュメントからattr
attr
null値は、指定された属性を削除します
だからあなたが望むように見えます.attr('disabled', null)。
.attr('disabled', null)