簡體   English   中英

鐵軌3制作一個 <tr> onclick執行與a:remote =&gt; true鏈接相同的ajax

[英]rails 3 making a <tr> onclick do the same ajax as a :remote => true link

問題標題非常多地說明了一切。 基本上我試圖讓每個表的tr元素執行相同的onclick ajax行為,如:remote => true link will。 看起來這將是一件簡單的事情,但我只是無法繞過哪條路接近它!

僅供參考,這是一個我希望在tr中模擬的鏈接示例:

link_to "link text here", stream_item, {:remote => true, "data-toggle" => "modal", 'data-target' => "#commentModal"} %>

我想這種方法要么只是以某種方式使用jquery,要么類似:

<tr onclick="some stuff here">

任何指針都大量贊賞..

謝謝!

我猜你想要能夠點擊整個表格行,而不僅僅是文本鏈接。 在這種情況下,您必須按照猜測使用JS事件處理程序。

  $('#myrow').click(function() {
      $('#mymodal).show();
  });

然后分配id:

<tr id="#myrow">Link Text</tr>

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM