Bootstrap框架下按钮的禁用
发表于:2024-11-27 作者:热门IT资讯网编辑
编辑最后更新 2024年11月27日,禁用button$('button').addClass('disabled'); // 按钮灰掉,但仍可点击。$('button').prop('disabled', true); // 按钮灰
禁用button
$('button').addClass('disabled'); // 按钮灰掉,但仍可点击。$('button').prop('disabled', true); // 按钮灰掉,且不可点击。
禁用类型为button的input按钮
$('input[value=下一页]').addClass('disabled'); // 按钮灰掉,但仍可点击。$('input[value=下一页]').prop('disabled', true); // 按钮灰掉且不可点击。