身思乐,人事爱,稳恒不言败!

使用样式CSS禁用超链接的点击事件,使其不可点击

<a href="link.html" class="disabled">链接</a>

a.disabled {
   pointer-events: none;
   cursor: default;
}