ASP.Net page enter key causing post back

前端 未结 6 546
眼角桃花
眼角桃花 2020-12-02 23:40

I have an aspx page that postsback when it should not. there are two text boxes, two listboxes and two buttons on the page. if at any-point the enter key is pressed the firs

6条回答
  •  日久生厌
    2020-12-03 00:00

    are you using jQuery?

    if so:

    $(document).keypress(function(e)
    {
        if(e.keyCode === 13)
        {
            e.preventDefault();
            return false;
        }
    });
    

提交回复
热议问题