如何禁用 ASP.NET 中的按钮

How to disable button in ASP.NET

我的图像上有一个 onclick 代码,用于禁用我的表单上的按钮,看起来像这样

<img alt="" src="images/search-icon.png" width="16" height="16" style="display: inline;height:16px;cursor:pointer; width: 16px;" onclick="DisableButton('<%=btnSave.ClientID %>');" />

然后在我的 javascript 上有这样的代码

function DisableButton(bSave) {
document.getElementById(bSave).attributes("Enabled", false);
}

问题是它不起作用,每次我点击图片都没有任何反应。我的代码有错误吗?请帮我解决这个问题。提前谢谢你。

代码如下:

 document.getElementById(bSave).disabled = true;

或者

document.getElementById('<%= btnSave.ClientID %>').disabled = true;

请使用它,它将起作用 在你的脚本中:

document.getElementById(bSave).disabled = true;

如果您使用 jquery 那么

 $("#"bSave).prop("disabled",true);

使用'disabled'

document.getElementById(bSave).disabled = true;

http://www.w3schools.com/jsref/prop_html_disabled.asp

消除禁用与禁用的歧义。