有没有办法关闭所有按钮,而不管它们当前处于什么状态?
例如,我想将所有按钮设置为关闭...
$('.btn').each(function () {
//something here to turn off all buttons
$(this).off;
});
有没有办法关闭所有按钮,而不管它们当前处于什么状态?
例如,我想将所有按钮设置为关闭...
$('.btn').each(function () {
//something here to turn off all buttons
$(this).off;
});