このコードを使用して、Web ページのボタンの無効な属性を設定および削除しています。
if (localStorage.buttonColor) {
document.getElementsByTagName('html')[0].className = localStorage.buttonColor;
var themeButtons = document.querySelectorAll(".theme");
for (var button in themeButtons) {
themeButtons[button].removeAttribute("disabled");
}
document.querySelector('button[name="' + localStorage.buttonColor + '"]').disabled = true;
}
しかし、次のようなメッセージが表示されます。
Uncaught TypeError: Object 0 has no method 'removeAttribute'
誰かがこれについてアドバイスをくれますか?