网站建设资讯

NEWS

网站建设资讯

Bootstrap框架下按钮的禁用

禁用button

$('button').addClass('disabled');  // 按钮灰掉,但仍可点击。
$('button').prop('disabled', true);  // 按钮灰掉,且不可点击。

禁用类型为button的input按钮

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

名称栏目:Bootstrap框架下按钮的禁用
文章URL:http://cdweb.net/article/iggiei.html