我正在尝试禁用html表中的单元格,以避免任何单击问题,但似乎Disabled属性对此不可用。
focusout()
的点击效果不是很好,因此我寻求帮助以找到更好的解决方案。
答案 0 :(得分:1)
如果要防止选择文本,请使用CSS属性user-select: none
。
.noselect{
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Safari */
-khtml-user-select: none; /* Konqueror HTML */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none;
}
th{
border: 1px solid gray;
}
<table>
<tr>
<th class="noselect">You can't select this</th>
<th>You can select this</th>
</tr>
</table>