웹마스터 팁
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
폰갭 alert하기
2015.01.01 23:57
html 의 alert 명령이 폰갭에 먹기는 하지만 모양이 좀 그래서
내부 명령이 존재 하기 때문에 대신 처리하면 조금 보기가 나은것 같아 올립니다.
navigator.notification.confirm(
'Are you sure you want to log out?', // message
onConfirm, // callback to invoke with index of button pressed
'Membership', // title
['Logout','Cancel'] // buttonLabels
);
function onConfirm(buttonIndex) {
var btn=buttonIndex;
if (btn==1) {
// 첫번째 버튼 눌렀을때 이벤트
}
}
이렇게 처리 하면 alert 에서 보는 화면보다 조금 나은 alert를 사용하게 됩니다.
사진과 같이 이런 모양이 됩니다. 모바일 웹에서 되는게 아니고 폰갭에서 가능합니다.