禁用鼠标选中DOM

我爱这一小段代码

// 禁用鼠标选中DOM元素
document.onselectstart = function() {
    return false;
}; 
原文地址:https://www.cnblogs.com/junb/p/4281950.html