JS 禁止用户选择 达到无法复制的目的

4 min read
<body onselectstart = "return false" ></body>

// OR
document.onselectstart = function(){
    return false;
}