问题标题几乎说明了一切。基本上,我试图让每个表的 tr 元素执行与 :remote=>true 链接相同的 onclick ajax 行为。看起来这将是一件简单的事情,但我就是不知道以哪种方式接近它!
仅供参考,这是我想在 tr 中模拟的链接示例:
link_to "link text here", stream_item, {:remote => true, "data-toggle" => "modal", 'data-target' => "#commentModal"} %>
我想这种方法要么只是以某种方式使用 jquery,要么类似:
<tr onclick="some stuff here">
任何指针都非常感谢..
谢谢!