-1

我正在使用这个 javascript 来展开折叠的嵌套网格视图。

<script type="text/javascript">
    $("[src*=plus]").live("click", function () {
        $(this).closest("tr").after("<tr><td></td><td colspan = '999'>" + $(this).next().html() + "</td></tr>")
        $(this).attr("src", "../minus.png");
    });
    $("[src*=minus]").live("click", function () {
        $(this).attr("src", "../plus.png");
        $(this).closest("tr").next().remove();
    });
</script>

我使用的解决方案在这里准确描述:http ://www.aspforums.net/Threads/135070/ASPNet-Nested-GridView-with-TextBoxes---Unwanted-comma-in-TextBox-after-PostBack/ 我的问题是在每个回帖中,我都在使用文本框:“旧值”逗号“新值”。它是重复值。

4

1 回答 1

0

使用“on”而不是“live”,因为 live 已贬值。

$("[src*=plus]").on("click", function () { // });
于 2013-10-15T08:31:51.833 回答