简体   繁体   English

如何禁用数据表选择

[英]How to disable datatable selection

  1. Looking to disable this select functionality within datatables only.希望仅在数据表中禁用此选择功能。
  2. Can do the ctrl+a as an example is already provided here Can do the ctrl+a as an example is already provided here

在此处输入图片说明

use user-select for the td and th tagstdth标签使用user-select

 td, th {
   user-select: none;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none; 
}

Try adding this in css to disable selection all over the body尝试在 css 中添加它以禁用整个身体的选择

body {
  -webkit-user-select: none;
 -moz-user-select: -moz-none;
  -ms-user-select: none;
   user-select: none;

} }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM