1. 程式人生 > >webform的操作完之後返回主頁面的行定位

webform的操作完之後返回主頁面的行定位

input () 技術分享 client get value tex gravity else

1.在repeater表格的行綁定時給行一個id(唯一id),此地方為綁定該表格的主鍵。技術分享

2.給定一個隱藏域

<input id="hidID" type="hidden" runat="server" />

3.在進入到編輯頁面時,將唯一主鍵相繼帶入。賦給隱藏域技術分享

技術分享

4.增加兩個js

function lod() {
$(".biaoge tr").eq(1).addClass("sh");
}

function dingwei() {
$("#" + $("#hidID").val()).css("background", "#CCCCFF")
}
5.後臺載入的時候調用js

if (!string.IsNullOrEmpty(this.hidID.Value))
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<script>dingwei();</script>");
}
else
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "", "<script>lod();</script>");
}

webform的操作完之後返回主頁面的行定位