私は datatable.i の単純な contexMenu を書いていdatatables
ます。データのリストを作成するためにクラスを使用しています。テーブルの最初のセルを右クリックして見つけたいのですが、どうすれば見つけられますか?
私の英語のjqueryでごめんなさい:
$("#showTopics tbody").bind("contextmenu",function(event) {
var aata = $(this).children('tr').children('td').eq(0).text();
alert(aata);
return false;
});
HTML
<table id='showTopics' style='line-height:18px;'>
<thead>
<tr>
<th style='width:30%;text-align:right;'>X"</th>
<th style='width:7%;'>a</th>
<th style='width:12%;'>b</th>
<th style='width:11%;'>c</th>
<th style='width:9%;'>d</th>
</tr>
</thead>
<tbody>
</tbody>
</table>