我有一張表,其中有多行,每個表都有表格數據。現在我想獲取當前tr的表數據的點擊數據鏈接屬性。想要獲得當前tabe數據點擊表格行的值
我的表結構如下:
<tr id="row1jqxgrid" role="row" data-key="1">
<td class="jqx-cell jqx-cell-darkblue jqx-grid-cell jqx-grid- cell-darkblue jqx-item jqx-item-darkblue jqx-grid- cell-nowrap jqx-grid-cell-nowrap-darkblue" style="max-width:350px; width:350px;border-left-width: 0px;" role="gridcell">
<span class=""></span>
<span class="jqx-tree-grid-title jqx-tree-grid-title-darkblue jqx-grid-cell-wrap jqx-grid-cell-wrap-darkblue">Accenture222</span></td>
<a class="ClickClass" data-link="http://www.recruiterfeedback.com/trs/index.php/recruiter/feedback_details/174">
<button class="btn btn-primary btn-sm ClickClass">
<i class="fa fa-search"></i> View
</button>
</a>
</td>
</tr>
我嘗試使用jQuery的屁股得到它的內容,但沒有奏效:
$("#jqxgrid").on('rowSelect', function() {
var current = $('#jqxgrid').attr('data-link');
alert(current);
var args = event.args;
var rowData = args.row;
// var a_href = $(this).find(rowData);
// alert(a_href);
var rowKey = args.key;
console.log(args);
console.log(rowKey);
console.log(event);
});
感謝您的代碼工作般的魅力..也感謝您指出 「TD」 的錯誤。這段代碼僅供參考,實際上它完美地工作。 – Xabby