有时我使用样式为按钮的锚,有时我只使用按钮。我想禁用特定的点击东西,以便:
他们看起来很残疾 它们不再被点击
我该怎么做呢?
有时我使用样式为按钮的锚,有时我只使用按钮。我想禁用特定的点击东西,以便:
他们看起来很残疾 它们不再被点击
我该怎么做呢?
当前回答
下面这些方法对我来说非常有效:
$("#button").attr('disabled', 'disabled');
其他回答
如果你像我一样,只是想禁用一个按钮,请不要错过隐藏在这篇长文章中的简单答案:
$("#button").prop('disabled', true);
@James Donnelly提供了一个全面的答案,它依赖于用一个新函数扩展jQuery。这是一个很好的想法,所以我要调整他的代码,让它以我需要的方式工作。
延长jQuery
$.fn.disable=-> setState $(@), true
$.fn.enable =-> setState $(@), false
$.fn.isDisabled =-> $(@).hasClass 'disabled'
setState=($el, state) ->
$el.each ->
$(@).prop('disabled', state) if $(@).is 'button, input'
if state then $(@).addClass('disabled') else $(@).removeClass('disabled')
$('body').on('click', 'a.disabled', -> false)
使用
$('.btn-stateful').disable()
$('#my-anchor').enable()
代码将处理单个元素或元素列表。
按钮和输入支持disabled属性,如果设置为true,它们将看起来是禁用的(多亏了bootstrap),并且在单击时不会触发。
锚点不支持disabled属性,因此我们将依赖.disabled类使它们看起来是禁用的(再次感谢bootstrap),并通过返回false连接一个默认的click事件来阻止单击(不需要preventDefault参见这里)。
注意:当重新启用锚时,您不需要取消此事件。简单地删除.disabled类就可以了。
当然,如果你在链接上附加了一个自定义的点击处理程序(在使用bootstrap和jQuery时非常常见),这就没有帮助了。因此,为了解决这个问题,我们将使用isDisabled()扩展来测试.disabled类,如下所示:
$('#my-anchor').click ->
return false if $(@).isDisabled()
# do something useful
我希望这有助于简化一些事情。
按钮
禁用按钮很简单,因为disabled是一个由浏览器处理的按钮属性:
<input type="submit" class="btn" value="My Input Submit" disabled/>
<input type="button" class="btn" value="My Input Button" disabled/>
<button class="btn" disabled>My Button</button>
要使用自定义jQuery函数禁用这些功能,只需使用fn.extend():
// Disable function
jQuery.fn.extend({
disable: function(state) {
return this.each(function() {
this.disabled = state;
});
}
});
// Disabled with:
$('input[type="submit"], input[type="button"], button').disable(true);
// Enabled with:
$('input[type="submit"], input[type="button"], button').disable(false);
JSFiddle禁用按钮和输入演示。
否则,您将使用jQuery的prop()方法:
$('button').prop('disabled', true);
$('button').prop('disabled', false);
锚标记
值得注意的是,disabled不是锚标记的有效属性。出于这个原因,Bootstrap在它的.btn元素上使用以下样式:
.btn.disabled, .btn[disabled] {
cursor: default;
background-image: none;
opacity: 0.65;
filter: alpha(opacity=65);
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
color: #333;
background-color: #E6E6E6;
}
注意[disabled]属性和.disabled类是如何作为目标的。disabled类是使锚标记显示为禁用所需要的。
<a href="http://example.com" class="btn">My Link</a>
当然,这不会阻止链接在单击时正常工作。上面的链接会把我们带到http://example.com。为了防止这种情况,我们可以添加一段简单的jQuery代码来使用禁用类来调用event.preventDefault():
$('body').on('click', 'a.disabled', function(event) {
event.preventDefault();
});
我们可以使用toggleClass()来切换禁用类:
jQuery.fn.extend({
disable: function(state) {
return this.each(function() {
var $this = $(this);
$this.toggleClass('disabled', state);
});
}
});
// Disabled with:
$('a').disable(true);
// Enabled with:
$('a').disable(false);
JSFiddle禁用链接演示。
结合
然后,我们可以扩展前面的disable函数,使用is()检查我们试图禁用的元素类型。这样,如果它不是输入或按钮元素,我们可以toggleClass(),如果它是disabled属性,我们可以切换它:
// Extended disable function
jQuery.fn.extend({
disable: function(state) {
return this.each(function() {
var $this = $(this);
if($this.is('input, button, textarea, select'))
this.disabled = state;
else
$this.toggleClass('disabled', state);
});
}
});
// Disabled on all:
$('input, button, a').disable(true);
// Enabled on all:
$('input, button, a').disable(false);
完全结合JSFiddle演示。
值得进一步注意的是,上述函数也适用于所有输入类型。
所有人的回答和贡献都很棒!我不得不稍微扩展这个功能,包括禁用选择元素:
jQuery.fn.extend({
disable: function (state) {
return this.each(function () {
var $this = jQuery(this);
if ($this.is('input, button'))
this.disabled = state;
else if ($this.is('select') && state)
$this.attr('disabled', 'disabled');
else if ($this.is('select') && !state)
$this.removeAttr('disabled');
else
$this.toggleClass('disabled', state);
});
}});
似乎对我有用。感谢所有!
下面这些方法对我来说非常有效:
$("#button").attr('disabled', 'disabled');