1. 程式人生 > 其它 >input繫結回車事件

input繫結回車事件

技術標籤:後端前端

  $('#bigSearch').bind('keypress', function (event) {

        if (event.keyCode == "13") {

            searchDefaultList('0')

        }

    });