1번 방법
본문에 페이지로 추가
<div data-role="page" id="page_dialog">
<div data-role="header">
<h1>Your Message</h1>
</div>
<div data-role="content" id="text">
</div>
</div>
스크립트에는
$.mobile.changePage('#page_dialog', {transition: 'pop', role: 'dialog'});
2번 방법
본문에 페이지로 추가
<div data-role=" dialog" id="page_dialog">
<div data-role="header">
<h1>Your Message</h1>
</div>
<div data-role="content" id="text">
</div>
</div>
스크립트에는
$.mobile.changePage('#page_dialog', 'pop', true, true);
'기타 > 프로그래밍 관련' 카테고리의 다른 글
PhoneGap "could not find class android.webkit.webresourceresponse" 에러 처리 방법 (0) | 2012.09.04 |
---|---|
Android PHP Mysql 연동 (0) | 2012.09.04 |
JQuery Navbar 동적 추가 (0) | 2012.08.22 |
JQuery Long Click 구현 (0) | 2012.08.22 |
이클립스 overlaps the location of another project 에러 (309) | 2012.07.30 |