Ajax 딥 링크가 포함 된 테스트 워드 프레스 블로그가 있습니다. 내가 뭘하고 싶은지 아약스 페이지 또는 게시물을로드 할 때 단순히 새로운 헤드 제목을 설정하는 것입니다.워드 프레스로 jquery 주소의 문서 헤드 제목 설정
은 앵커 태그 속성 제목 또는 해시 URL 이름으로 호출 할 수 있습니다.
도움을 주시면 감사하겠습니다.
http://missionandromeda.com/test/ 초기 테스트 페이지
$("body").append("<img src='loader.gif' id='ajax-loader' style='position: absolute; left: 50%; top: 64%;' />");
var base = 'http://missionandromeda.com/test',
$mainContent = $("#container"),
$ajaxSpinner = $("#ajax-loader"),
$allLinks = $("a"),
$('a:urlInternal').live('click', function(e) {
// Default action (go to link) prevented for comment-related links (which use onclick attributes)
e.preventDefault();
});
$.address.change(function(event) {
if (event.value) {
$ajaxSpinner.fadeIn();
$mainContent
.empty()
.load(base + event.value + ' #content', function() {
$ajaxSpinner.fadeOut();
$mainContent.fadeIn();
});
}
var current = location.protocol + '//' + location.hostname + location.pathname;
if (base + '/' != current) {
var diff = current.replace(base, '');
location = base + '/#' + diff;
}
});