jsが無効になりました.マウスはクリックできません.

684 ワード

ここでいう無効化はdisable属性がない要素で、div、liタグなど、input、buttonタグなどの属性がある要素は、直接にこの属性を設定することを禁止する必要がある.
マウスがクリックできないのは主に2つの表現です.
1.マウスがクリックできない時の表示状態
//document.getElementById('id').style.color="grey";(  )
//$('#id').style.color="grey";(  )
cursor: not-allowed;

document.getElementById('id').style.cursor="not-allowed";
2.マウスの既存のイベントが実現できません.
pointer-events:none;

.notclick {
    pointer-events: none; 
}
//$("#id").addClass("notclick");

//$(".   ").addClass("   ");  
$(".click").addClass("notclick");