标签: jquery
我有某些行的数据网格。我只想禁用使用jQuery双击表行。如何实施
答案 0 :(得分:1)
这样做:
$('tr').dblclick(function(){ return false; // does both event.stopPropogation as well as event.preventDefault });