본문 바로가기

모바일웹

jQuery Mobile 페이지 이동 링크 문제

제이쿼리 모바일을 썼을때, 로컬에서 페이지 이동이 되지않고 에러가 나는 것을 볼수 있습니다.

이것을 무한 검색 끝에 찾은 방법으로, 내용은 아래와 같습니다.

The solution is really simple. You can’t work with jquerymobile with the protocol file:// it has to be a web address. After moving it to a server, with protocol http:// it worked immediately. Hope this helps anyone else frustrated with the problem.

 
위 내용은 즉, http:// 웹주소를 써야한다는 말입니다.

방법2.

Links that point to other domains or that have rel="external", data-ajax="false" or target attributes will not be loaded with Ajax and will cause a full page refresh. If multiple "pages" are contained within a single HTML document, they can be linked by referencing the ID of the page as an anchor (#foo).

<a rel="external"> </a> 을 써줌으로써 해결되었습니다.

작은 오류 때문에 몇일을  검색한 끝에 알아 내었내요, 다들 도움이 되길 바랍니다.

참고 : http://jquerymobile.com/demos/1.0a4.1/docs/pages/link-formats.html