textchanged

时间:2016-10-10 13:56:05

标签: c# asp.net button textbox textchanged

我在textbox上遇到了textchanged事件的问题。 在我输入一些字符串并点击回车后,我也不知道为什么按钮点击也会被触发

这里是我的.aspx

<form id="form1" runat="server">
<div>

</div>
    <asp:Label ID="labelKodeDivisi" runat="server" style="z-index: 1; left: 62px; top: 57px; position: absolute" Text="labelKodeDivisi"></asp:Label>
    <asp:Label ID="labelNamaDivisi" runat="server" style="z-index: 1; left: 62px; top: 85px; position: absolute" Text="labelNamaDivisi"></asp:Label>
    <asp:Button ID="butLogout" runat="server" OnClick="butLogout_Click" style="z-index: 1; left: 682px; top: 40px; position: absolute" Text="Button" />
    <asp:TextBox ID="tbKode" runat="server" OnTextChanged="tbKode_TextChanged" style="z-index: 1; left: 71px; top: 127px; position: absolute"></asp:TextBox>
</form>

这里是我的aspx.cs

public partial class FormDivisi2 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {

    }

    protected void butLogout_Click(object sender, EventArgs e)
    {
        labelKodeDivisi.Text = "123";
    }

    protected void tbKode_TextChanged(object sender, EventArgs e)
    {
        labelNamaDivisi.Text = "555";
    }
}

正在进行的是,当我在文本框tbKode中输入文本并按Enter键时,labelNamaDivisi.text更改为555但labelKodeDivisi.text也更改为555。 我想要的是当我在textbox tbKode中输入一些文本时,labelNamaDivisi.text更改为555但labelKodeDivisi没有更改。 labelKodeDivisi仅在我按下按钮时更改

1 个答案:

答案 0 :(得分:0)

你可以试试这个

$('input').keypress(function(event){
        if(event.keyCode==13)
        {
            event.preventDefault();

            }
        })