リピータ内にリピータとlableがあり、各行に5行のテーブルがバインドされており、lableコントロールにバインドされているユーザー名があります。特定のlableのテキストをjavascript内のリピータ内に配置する方法
<asp:Repeater ID="PostsRepeater" runat="server">
<ItemTemplate>
<asp:Label ID="lblUserName" runat="server" Text="<%#Eval("username") %>"></asp:Label>
<asp:TextBox ID="txtUser" runat="server"></asp:TextBox>
<input id="btnGetUser" type="button" value="Get" />
</ItemTemplate>
</asp:Repeater>
iはjavascriptの
のforeach(リピーターobjRepeとしてラベルの
cssClass
を指定する必要が条件に従いますRepeater1.Items) { ラベル名=(ラベル)item.FindControl( "Name"); if(Name!= null) { //あなたのコード } イメージimg =(Image)objRepe.FindControl( "Img"); if(img!= null) { //あなたのコード } } – NishantMittalボタンのクリックでJavaScriptコードを教えてください。 –
これを試してください.. http://stackoverflow.com/questions/8342583/access-repeater-values-using-javascript – NishantMittal