解决方法
您可以使用用户选择的CSS3属性
像这样的HTML:
<span class="protected">Datas you wants protect</span>
和对应的CSS:
.protected { -moz-user-select:none; -webkit-user-select:none; user-select:none; }
看我的例子:http://jsfiddle.net/DoubleYo/RPv4q/
这个解决方案不是跨浏览器,但使用firefox和chrome / safari工作正常