user-select
样式详查 http://www.css88.com/book/css/properties/user-interface/user-select.htm
1, user-select:
none:文本不能被选择;
-webkit-user-select: none; /* Chrome all / Safari all /opera15+*/
-moz-user-select: none; /* Firefox all */
-ms-user-select: none; /* IE 10+ */
user-select: none;
还有这里<div class="test" onselectstart="return false;" unselectable="on">选择我试试</div>,注意添加后面两个属性。
只有在泥泞的道路上才能留下脚印