Trigger an event on `click` and `enter`

前端 未结 7 2094
醉话见心
醉话见心 2020-12-12 14:52

I have a searchbox on my site that. Currently, users must click the submit button next to the box to search via jquery\'s post. I would like to let users also press enter

7条回答
  •  旧时难觅i
    2020-12-12 15:24

    you can use below event of keypress on document load.

     $(document).keypress(function(e) {
                if(e.which == 13) {
                   yourfunction();
                }
            });
    

    Thanks

提交回复
热议问题