1

テキストボックスからそれ自体のイベントに値を渡すにはどうすればよいですか?

 <asp:TextBox runat="server" ID="txtEmail" onblur="SendRequest()">this_text_I_want_to_put_as_param_to_SendRequest</asp:TextBox>
4

1 に答える 1

3
<asp:TextBox 
    runat="server" 
    ID="txtEmail" 
    onblur="SendRequest(this.value)">
    this_text_I_want_to_put_as_param_to_SendRequest
</asp:TextBox>
于 2012-08-28T13:34:08.067 に答える