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.
我正在尝试使用 JavaScript 创建一个 Windows 8 应用程序。我正在尝试使用 CSS 设置禁用按钮的样式,但无论我做什么,禁用时按钮都会呈现相同。
有谁知道如何为 Windows 8 应用程序设置禁用按钮的样式?
尝试使用:disabled伪类。它适用于所有元素。
:disabled
通过使用jquery,我们可以做到这一点
$('#ButtonID').attr('disabled',true);
通过 Javascript
document.getElementById("firstbtn").disabled=true;
通过 HTML5
<button class="win-backbutton" aria-label="Back" disabled></button>