滚动条滚动到指定name的锚 .
$.extend({
osiris : {
scrollToAnchor : function(name){
if(name){
location.href="#" + name;
}else{
alert("name not found!");
}
}
}
});
// 用法
$("#btn").click(function(){
$.osiris.scrollToAnchor("myAnchor");
});
<a name="myAnchor"></a>
posted on 2012-03-16 12:54 Osiris4Net 阅读(179) 评论(0) 编辑 收藏 举报