如何在棘手的情况下禁用表格上的文本选择?
我有一个基本的表格,如下所示:
<table>
<tbody>
<tr>
<td>Column 1</td>
<td>Column 2</td>
</tr>
</tbody>
</table>
在行上,我有一个带有 jQuery 的双击功能:
$('tr').live('dblclick',function(){
dosomething();
return false;
});
我还有一个名为 tablednd 的插件,它在行上使用 mousedown/up 函数。 双击会导致单元格上的文本选择。
我怎样才能防止这种情况发生?
I have a basic table, like this:
<table>
<tbody>
<tr>
<td>Column 1</td>
<td>Column 2</td>
</tr>
</tbody>
</table>
On the rows I have a double click function with jQuery:
$('tr').live('dblclick',function(){
dosomething();
return false;
});
I also have a plugin called tablednd that uses mousedown/up function on the rows.
The double clicking causes text selection on the cells.
How can I prevent this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能使用
select()
事件,因为它仅限于输入元素。相反,请在
selectstart
事件上尝试preventDefault()
...jsFiddle 。
或者,您可以使用 CSS...
You can't use
select()
event because it is limited to input elements.Instead, try
preventDefault()
on theselectstart
event...jsFiddle.
Alternatively, you can use CSS...
尝试更改
此
设置应该可以防止双击执行浏览器默认执行的任何操作。您应该在所有浏览器中测试此代码,但不确定它是否适用于所有浏览器。
Try changing
to
this should prevent the doubleclick from doing anything the browser will do at default. You should test this code in all browsers though, not sure if it will work everywhere.