【www.gdgbn.com--jquery】


(function($){
var origcontent = "";
function loadcontent(hash) {
if(hash != "") {
if(origcontent == "") {
origcontent = $("#content").html();
}
$("#content").load(hash +".html",
function(){ prettyprint(); });
} else if(origcontent != "") {
$("#content").html(origcontent);
}
}
$(document).ready(function() {
$.history.init(loadcontent);
$("#navigation a").click(function(e) {
var url = $(this).attr("href");
url = url.replace(/^.*#/, "");
$.history.load(url);
return false;
});
});
})(jquery);

本文来源:http://www.gdgbn.com/wangyezhizuo/28391/