이벤트 = 페이지의 모든 방문자에 대한 응답 작업입니다.

jQuery 모바일 이벤트 통사론

jQuery Mobile에서는 모든 표준 jQuery 이벤트를 사용할 수 있습니다.

또한 jQuery Mobile은 모바일 브라우저용 이벤트도 제공합니다.

터치 이벤트 - 사용자가 화면을 터치할 때 트리거됨

슬라이딩 이벤트 - 사용자가 위아래로 슬라이드할 때 트리거됨

위치 이벤트 - 장치가 수평일 때 또는 세로로 뒤집힐 때 트리거됨

페이지 이벤트 - 페이지가 표시되거나, 숨겨지거나, 생성되거나, 로드되거나 로드되지 않을 때 트리거됩니다

jQuery 모바일 이벤트 예

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="https://apps.bdimg.com/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="https://apps.bdimg.com/libs/jquerymobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
<script>
$(document).on("pagecreate","#pageone",function(){
  $("p").on("click",function(){
    $(this).hide();
  });                       
});
</script>
</head>
<body>

<div data-role="page" id="pageone">
  <div data-role="header">
    <h1>页眉文本</h1>
  </div>

  <div data-role="main" class="ui-content">
    <p>如果您点击我,我会消失。</p>
    <p>点击我,我会消失。</p>
    <p>点击我,我也会消失。</p>
  </div>

  <div data-role="footer">
    <h1>页脚文本</h1>
  </div>
</div> 

</body>
</html>

인스턴스 실행 »

온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요