jquery 设置页面元素不可点击、不可编辑、只读(备忘)

$("input").attr('readonly', true);

$("textarea").attr('readonly', true);

$(':radio').attr('disabled', true);
$(':checkbox').attr('disabled', true);
$(':button').attr('disabled', true);
$('a').removeAttr('onclick');
$('select').attr('disabled', true);

posted @ 2016-11-25 17:22  洋葱土豆随心匠  阅读(32521)  评论(0编辑  收藏  举报