使用数据表和行分组我试图让行在单击输入时不展开..但仅在单击 tr 时展开。 .stopPropagation()
不工作。
我正在使用.live()
,因为该表是由 ajax 动态创建的。
$("#example input[type='text']").live('click',function(event){
event.stopPropagation();
return false;
});
这是一个jsfiddle:http: //jsfiddle.net/JWvZt/