gpt4 book ai didi

jquery - 可选择的表行 Jquery Asp.net

转载 作者:行者123 更新时间:2023-12-01 01:30:29 24 4
gpt4 key购买 nike

我想创建一个表,其中的行可以通过 jquery 选择。我还想将某些表格单元格值从行上的双击事件传递到另一个页面。

有人有例子说明这是如何工作的吗?

最佳答案

var selected = null;

$(document).ready(function(){
$("#<%=myTable.ClientID %>").find("tr").click(function(){
$(selected).removeClass("selected");
$(this).addClass("selected");
selected = this;
});

$("#<%=myTable.ClientID %>").find("tr").dblclick(function(){

/* if you just want to dig into that record I would put a custom attribute on the row */
window.location = "<%=ResolveUrl("~/one/folder/deeper/") %>?record=" + $(this).attr("RecordId");

/* or you could have a hidden LinkButton in the row (Text="" or not set) that you could trigger. Make sure you set the CommandName="Something" and CommandArgument="RecordId" */
$(this).find("a").click();
});

});

关于jquery - 可选择的表行 Jquery Asp.net,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/652355/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com