<script type="javascript">
$(".search input[type=text]").keypress(function(e) {
if (e.keyCode == 13){
action();
}
});
</script>
.search class명을 가진 엘리멘트 안에 input type이 text, 엔터(e.keyCode == 13)치면 함수호출
[출처] input안에 엔터치면 함수호출|작성자 로드파이
'Client Standard > JavaScript & jQuery' 카테고리의 다른 글
[Mobile] 체크하기 (0) | 2014.03.07 |
---|---|
[multi file upload] 업로드시 input file Add (0) | 2014.02.21 |
[Search] 검색 onkeypress 속성 (0) | 2013.12.10 |
[JQuery] opener로 부모창의 document 객체 긁어오기 (프린트) (0) | 2013.12.06 |
[Js] getClass, display:none, block (0) | 2013.11.25 |