Jump to content
  • 0

jquery on click и enter


Alexys
 Share

Question

Форма сложная, проблематично представить исходный код.

Имеем инпут в произвольном месте формы

На другой вкладке имеется button с привязкой метода click.

Находясь в input нажимаю enter - выполняется код из метода click (который как указал выше привязан к другой абсолютно кнопке)

Как такое может быть, как ентером попадаю в click?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Пришлось извратиться следующим способом:

 

$("#my_input").keypress(function (e) {
            if (e.keyCode == 13) {
                alert("my_input");
                
                return false; -- добавил return false, не было этой строки попадал в: 
            }
    });
 
попадал в: сюда:
 
var add_btn = mydiv.find('div.list-ctrls button:first-child');
add_btn.on('click', function (event) {
        if (editor != null && editor != undefined) {
            editor.Add();
        }
        return false;
    });
 
дебаггером проблематично проходить, откуда выцепляет непонятно, как привязал непонятно...
Link to comment
Share on other sites

  • 0

Как вариант, можете специально указать кнопки type="button", например. Просто, по умолчанию для нее стоит submit, и поэтому выходит, что когда нажимаете enter, это равносильно нажатию на кнопку.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy