简体   繁体   中英

How to call javascript function on keyup event for asp:TextBox

How to call javascript function on keyup event for asp.net's TextBox control? I am trying something like this, but it is not working.

<asp:TextBox ID="txt_userid" runat="server"  onkeyup="GetRes();"></asp:TextBox>


UPDATE
there is a update alert is working but breakpoints in java function is not working.

Test this solution:

Add this code to your page load :

txt_userid.Attributes.Add("onkeyup", "GetRes();");

I don't say this is best way possible, but it works.

UPDATE:

Complete sample:

ASPX:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <asp:TextBox ID="txt_userid" runat="server"></asp:TextBox>
    </div>
    </form>
</body>
</html>

Code behind:

protected void Page_Load(object sender, EventArgs e)
        {
            txt_userid.Attributes.Add("onkeyup", "alert('hi');");
        }

Works perfectly. Tested it in IE, Chrome, FireFox.

it is very simple:

TextBox1.Attributes.Add("onclick", "hello();");

in asp.cs code file.

then in aspx source file use javascript function:

<script type="text/javascript">
    function hello() {

    alert("hi")

    }

</script>
$(document).ready(function () {
  $('#<%=TextBox1%>').keyup(function () {
    updateDateKey($(this).val());
  });
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM