table中td元素,不可操作、不可编辑、获取不到焦点、不能被选中

在要让文本不能被选中的TD内加入
onselectstart="return false" onselect="document.selection.empty()"

<table>
<tr><td onselectstart="return false" onselect="document.selection.empty()">宝宝(不能选)</td></tr>
<tr><td>宝宝(可以选)</td></tr>
</table>

原文地址:https://www.cnblogs.com/liangdong/p/10318044.html