禁止文本选中

1.window.getSelection
IE9、Firefox、Safari、Chrome和Opera支持window.getSelection
2.document.selection
IE9以下支持:document.selection
禁止文本框选中:兼容写法
window.getSelection?window.getSelection().removeAllRanges() : document.selection.empty()
原文地址:https://www.cnblogs.com/creazybeauty/p/8183347.html