Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要防止在 Yii MVC 中的 CGridView 上单击事件上的行选择;
tr如果我能捕捉到所有标签上的点击事件,这就够了。
tr
我怎样才能捕捉到事件并停止它?
我找到了我的问题的答案:
$("tr").click(function(event){ event.stopPropagation(); // do something });