有人可以解释为什么下面的内容不起作用,因为它没有返回包装在标签中的单元格的内容吗?我将它与 DataTables 插件结合使用。我基本上想在单元格的当前内容周围加上一个链接。
$('table#example tbody td:nth-child(1), table#example tbody td:nth-child(2)').html('<a href="view-aae.asp?id=">[' + $(this).text() + ']</a>').click(function () {
$("#thedialog").attr('src', $(this).next('.dialog').attr("href"));
$("#somediv").dialog({
width: 800,
height: 600,
modal: true,
close: function () {
$("#thedialog").attr('src', "about:blank");
}
});
return false
});