반응형
href나 location.href를 사용하지 않고, Jquery Mobile의 자체 메소드를 사용 하려면 저렇게 쓴다.
$.mobile.changePage("원하는 페이지");
같은 파일 내에서의 이동은
$.mobile.changePage("#location");
다른 파일로의 이동
$.mobile.changePage("location.php");
효과주기
$.mobile.changePage("#location",{ transition: "slideup"});
기타 옵션
$.mobile.changePage("#location",{ transition: "slideup", reverse: true})
$.mobile.changePage("원하는 페이지");
같은 파일 내에서의 이동은
$.mobile.changePage("#location");
다른 파일로의 이동
$.mobile.changePage("location.php");
효과주기
$.mobile.changePage("#location",{ transition: "slideup"});
기타 옵션
$.mobile.changePage("#location",{ transition: "slideup", reverse: true})
반응형
'IT 실무 > 웹프로그래밍' 카테고리의 다른 글
[Javascript] String 관련 함수들 (0) | 2012.12.01 |
---|---|
[Jquery Mobile] Dialog의 Close버튼 없애기 (0) | 2012.11.16 |
[Jquery Mobile] ajax를 쓰지 않고 페이징 처리하기 (0) | 2012.11.16 |
[Jquery] 주요 함수 레퍼런스와 깔끔한 예제들 (0) | 2012.11.10 |
[PHP] 썸네일 함수 정리 (0) | 2012.11.10 |
댓글