$('button').addClass('disabled'); // 按钮灰掉,但仍可点击。 $('button').prop('disabled', true); // 按钮灰掉,且不可点击。
$('input[value=下一页]').addClass('disabled'); // 按钮灰掉,但仍可点击。 $('input[value=下一页]').prop('disabled', true); // 按钮灰掉且不可点击。