페이스 북 및 Google 메일과 함께 사용되는 "앵커 탐색"으로 웹 사이트를 만들고 있습니다. 나는 그것을 작동 시키지만 완전히하지 못한다. #contact
과 같은 페이지를로드 할 때 링크를 클릭하지 않으면 페이지가로드되지 않습니다. 또한, 내가하고있는 일을 더 효율적이고 효과적으로 수행 할 수있는 방법이 있을까요? 나는 JS 프로그래밍에있어 최고의 사람이 아니다.자바 앵커 내비게이션
자바 스크립트 :
$.navigate = function() {
// a new link
if($anchor != document.location.hash){
// add a preloader
$("#content")
.empty()
.html('<p class="align-center"><img src="assets/images/loading.gif" /></p>');
// change the anchor saved for next time
$anchor = document.location.hash;
// get the variables ready for the get
var i = $anchor.substring(1).split("/");
var $page = i[0];
var $y = (i[1]) ? i[1] : false;
// get the file
$.get("callback.php", { x: $page, y: $y }, function(data){
$("#content")
.empty()
.html(data);
},"html");
}
};
$(function() {
var $anchor = "";
// change from the URI. This dont work.
if(document.location.hash){ $.navigate(); }
$("a","#nav")
.css({backgroundColor:"#f7f7f7"})
.each(function() {
$(this).attr("href","#" + $(this).attr("name"));
});
setInterval('$.navigate()', 300);
});
HTML :
<div id="nav">
<ul class="horizontal-nav">
<li><a href="http://streetmafia.co.uk/" name="index">Home</a></li>
<li><a href="http://streetmafia.co.uk/about" name="about">About</a></li>
<li><a href="http://streetmafia.co.uk/portfolio" name="portfolio">Portfolio</a></li>
<li><a href="http://streetmafia.co.uk/contact" name="contact">Contact</a></li>
</ul>
<div id="l-nav"></div>
<div id="r-nav"></div>
</div>
답변을 수락하는 것을 잊지 마십시오. – fserb