#pageContent
을 통해 php
호출을로드하고 HTML로 DOM을 채우는 간단한 ajax 웹 사이트를 구축합니다. #pageContent
내의 링크에 Fancybox를 사용하고 있습니다. fancybox가 더 이상 작동하지 않고 링크가 전혀 작동하지 않더라도 다른 페이지로 이동하면 fancybox가 정상적으로 작동하는 홈 페이지에 문제가 있습니다. 나는 시도한 스크립트를 setTimeout
, pageLoad()
및 다른 많은 아이디어로 옮겼습니다.Fancybox는 PHP 호출 후 Ajax 사이트에서 작동하지 않으며 DOM은 HTML로 채워 넣습니다.
Ajax 호출 : 여기
코드입니다 : 누군가가 나에게 이것에 대해 미쳐가는 IM 도와주세요var default_content="";
$(document).ready(function(){
checkURL();
$('ul li a').click(function (e){
checkURL(this.hash);
});
//filling in the default content
default_content = $('#pageContent').html();
setInterval("checkURL()",250);
});
var lasturl="";
function checkURL(hash)
{
if(!hash) hash=window.location.hash;
if(hash != lasturl)
{
lasturl=hash;
// FIX - if we've used the history buttons to return to the homepage,
// fill the pageContent with the default_content
if(hash=="")
$('#pageContent').html(default_content);
else
loadPage(hash);
}
}
function loadPage(url)
{
url=url.replace('#page','');
$('#loading').css('visibility','visible');
$.ajax({
type: "POST",
url: "load_page.php",
data: 'page='+url,
dataType: "html",
success: function(msg){
if(parseInt(msg)!=0)
{
$('#pageContent').html(msg);
$('#loading').css('visibility','hidden');
}
}
});
}
Fancybox 스크립트 화재 : 문제에
$(document).ready(function(){
$(".extLink").fancybox({
'width' : '75%',
'height' : '100%',
'autoScale' : false,
'transitionIn' : 'elastic',
'transitionOut' : 'fade',
'type' : 'iframe'
});
});
링크가 같다 다음과 같습니다 :
http://dev.abdemo.net/perfectparties
페이지에 콘텐츠를 추가 할 때 작동하지만 대체 할 때 작동하지 않습니다. 같은 문제가 여기에 있습니다. http://dev.abdemo.net/ppr /governmentprojects/index.html – DJERock
이번에는 내용을 슬라이더로 바꾸는 작업이 포함됩니다. 이번에는 loadObjs()를 사용해 보았지만 스크립트와 CSS는 html 페이지에 직접 스크립트를 삽입하더라도 HTML 내용에 다시 적용되지 않습니다. ' – DJERock
내용을 바꿀 때도 작동합니다. 데모를보십시오 : http://picssel.com/playground/jquery/jQueryONreplacingContent_07mar12.html .... 단지 새로운 내용이 당신이 사용하는 곳에있는 컨테이너에 있는지 확인하십시오. on()'method – JFK