textbox & Button
のネストされたGridviewがあります。 asp.netでjqueryを使用してButton Click
を入力したときに表示されるtextbox
の値を表示する方法私はネストされたGridviewのボタンクリックからTextBox値を取得する方法
function showText() {
var text= $("#TextBox1").val();
alert(text);
return false;
}
を使用している例
<asp:GridView ID="GridParent" runat="server">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<table>
<tr>
<td>
-----------
-----------
</td>
<td>
<asp:GridView ID="GridChild" runat="server">
<Columns>
<asp:TemplateField>
<ItemTemplate>
<asp:Textbox ID="TextBox1" runat="server"></asp:TextBox>
<asp:Button ID="Button1" runat="server" Text="Button" onclick=showText(); return false; />
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
</td>
</tr>
</table>
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
jQueryのために
私はstackoverflowの正確な質問を見つけましたが、私はjQueryのを使用して、ネストされたGridViewの中にテキストボックスの値を取得したいので、私の質問は少し異なっていますC#あなたのweb.config
で
その動作していない仲間 – user6503334
あなたのjQueryをロードしていますか? –
私の他のjquery検証はうまく動作します – user6503334