我有一个按钮,其类型是图像我要禁用按钮,直到以下某些操作是html标记
如何禁用此按钮?
答案 0 :(得分:3)
您可以添加返回false的点击:
$('#myButton').click(function() { return false; });
你可能想要添加一条消息来解释它被禁用的原因,并且可能还有一些CSS使它看起来也被禁用了。
答案 1 :(得分:0)
这是我用来禁用或重新启用控件的代码:
function handleControlDisplay(className, foundCount, checked) {
var button = jQuery(className);
if (foundCount > 0 && foundCount == checked) {
// enable
button.removeAttr("disabled");
}
else {
// set the disabled attribute
button.attr("disabled", "true");
};
}