jQuery Mobile 페이지 이동 링크 문제 > jquery

본문 바로가기
사이트 내 전체검색

jquery

jQuery Mobile 페이지 이동 링크 문제

페이지 정보

작성자 서방님 댓글 0건 조회 115회 작성일 15-07-15 16:40

본문

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

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

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> 을 써줌으로써 해결되었습니다.

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

======================================================

[원인] 

그누보드와 제이쿼리 사용중 기존 a링크와 form 에 페이지 전환 문제

 jquery mobile 사용중 ajax 처리 문제로 페이지 이동이 안되는경우 발생



[해결1]


이 링크는 다른 도메인이나  rel="external", data-ajax="false" or target 은 Ajax를로드 할 수 없습니다. 대신, 이러한 링크가없는 애니메이션 전환으로 전체 페이지 새로 고침의 원인이됩니다. 

두 속성(rel="external" and data-ajax="false") 같은 효과

하지만 다른 의미 의미를 가지고  rel="external" 는 다른 사이트 또는 도메인에 연결 할 때의 사용되어야 하며

data-ajax="false" 단순히 Ajax를 통해 로드되는 도메인 내 페이지를 빠저나가야 할 때 유용합니다.

보안 제한 때문에, 프레임 워크는 항상 아약스 동작 중 외부 도메인에 대한 링크를 옵션을 해제합니다.


#a태그 (2가지 방법)

<a href="#" data-ajax="false">

<a href="#" rel="external">


#form태그

<form name="mform" post="get method="post" data-ajax="false">




[해결2]

위와 같은 식으로 처리를 하다보니 전체적으로 처리해야 할부분이 많이진다.

한번에 처리

 jQuery를 모바일이로드되기 전에, 이벤트 처리기를 바인딩해야합니다.

아래와 같이 하면 끝


<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>

<script type="text/javascript">

$(document).bind("mobileinit", function(){

                $.mobile.ajaxLinksEnabled = false;

                $.mobile.ajaxFormsEnabled = false;

                $.mobile.ajaxEnabled = false;

});

</script>

<script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>

댓글목록

등록된 댓글이 없습니다.

Total 193건 12 페이지
게시물 검색

회원로그인

접속자집계

오늘
116
어제
225
최대
1,347
전체
154,875
Latest Crypto Fear & Greed Index

그누보드5
Copyright © 서방님.kr All rights reserved.