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.
可能重复: 如何使用 jQuery 启用或禁用锚点?
我有这个:
<a onclick="javascript:btnSave_onclick();" class="button">Save</a>
基本上,链接就像一个按钮。
但是,在某些情况下我需要禁用它。这个怎么做?
你有什么理由不只是使用按钮吗?在这种情况下,您可以使用
document.getElementById('button').disabled = true;
您还必须为按钮设置一个 id