css怎么让页面上的内容不能被选中

body{

    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}
原文地址:https://www.cnblogs.com/zhaobao1830/p/6493318.html