1

我正在使用 jquery 数据表插件,第一行有两个链接。这些链接用于在点击时发送 ajax。由于我实现了数据表(我之前只有一个表),它停止工作。我环顾四周并尝试了两件事:

我原本有

               $(".approveReject").click(function () {
                   OnApproveRejectClick("voavi", this);
               });

但是将其替换为

$(document).delegate("click", '.approveReject', function (event) {
alert("clicked");
});

没有成功,所以我尝试将 fnInitComplete 回调添加到数据表初始化对象:

        "fnInitComplete": function () {
            $(".approveReject").click(function () {
                OnApproveRejectClick("voavi", this);
            });
        }

依然没有。点击根本不起作用。知道我需要做什么才能将点击事件绑定到我的链接吗?谢谢

完整的数据表初始化

    $("#voaviTable").dataTable({
        "bJQueryUI": true,
        "bScrollInfinite": true,
        "bScrollCollapse": true,
        "iDisplayLength": 30,
        "sScrollY": "450px",
        "oLanguage": {
            "sSearch": "Filter: "
        },
        "aaSorting": [],
        "fnInitComplete": function () {
            $(".approveReject").click(function () {
                OnApproveRejectClick("voavi", this);
            });
        }
    });

表示例行:

<tr class="even">
<td class=" ">
<a id="lnkApprove" class="approveReject" href="#">Approve</a>
|
<a id="lnkReject" class="approveReject" href="#">Reject</a>
<span class="ui-icon ui-icon-circle-check" style="display: none;"></span>
<span class="ui-icon ui-icon-circle-close" style="display: none;"></span>
<img id="loaderGif" height="16px" style="display: none;" src="../../Content/images/loader.gif">
</td>
<td class="statusID "> 32 </td>
<td class="statusText "> new </td>
<td class=" "> </td>
<td class=" "> </td>
<td class=" "> Cote de Blancs </td>
<td class=" "> </td>
<td class=" "> </td>
<td class=" ">
<td class=" "> 10/5/2012 2:54:05 PM </td>
</tr>
4

1 回答 1

4

您使用委托错误

$(document).delegate( '.approveReject', "click",function (event) {// <-- notice where the selector and event is
    alert("clicked");
});

虽然如果你使用 jQuery 1.7+ 使用 .on()

$(document).on("click", '.approveReject', function (event) {
    alert("clicked");
});

最好的办法是将事件绑定到您的表,因为它是最接近的静态父元素(我猜)

$('#voaviTable').on('click','.approveReject', function (event) {

$(document).delegate(selector, events, data, handler); // jQuery 1.4.3+

$(document).on(事件、选择器、数据、处理程序); // jQuery 1.7+

于 2012-10-05T20:07:54.857 回答