티스토리 뷰




# 대부분 검색이 input 박스에 무엇인가를 입력하고 검색 버튼을 누르게 되어있다.

버튼 클릭을 하게 되면 버튼의 id를 가지고 click 이벤트를 주게 된다.

1
2
3
4
5
6
7
/* 검색버튼 클릭 */
$('#DDL-searchButton').click(function(){
    $("#DDL-currentPage").val(1);
    $("#DDL-searchKey").val($("#DDL-searchType option:selected").val());
    $("#DDL-searchValue").val($("#DDL-searchValue2").val());
    LogController.showUser();
});
cs



# 검색 버튼을 누르지 않고, input 박스에 검색 할 TEXT 를 입력 하고 

엔터키로 검색이 되게 하려면 input 박스의 id값을 가지고 keyup 이벤트를 설정한다.


1
2
3
4
5
6
7
8
//검색시 enter event 
                $('#DDL-searchValue2').keyup(function(event) {
                    if (event.which == 13) {
                        $("#DDL-searchKey").val($("#DDL-searchType option:selected").val());
                        $("#DDL-searchValue").val($("#DDL-searchValue2").val());
                        LogController.showUser();     
                    }
                });              
cs



댓글