如何禁用双击表行

时间:2014-05-04 10:51:41

标签: jquery

我有某些行的数据网格。我只想禁用使用jQuery双击表行。如何实施

1 个答案:

答案 0 :(得分:1)

这样做:

$('tr').dblclick(function(){
   return false; // does both event.stopPropogation as well as event.preventDefault
});