实现点图换页的功能
?
$(function(){$(".finance_link").hover(function(){var id=parseInt(this.id.split("_")[3]);$("#finance_intros_wrap").css("top",-id*$(".finance_intro").get(0).offsetHeight);return false;});})
?
注意这里的offsetHeight,这里的offsetHeight是指height+(padding height)+(border height)。而clientHeight则少了一个border的高度。 这里的意思就是用鼠标移到一个图标上的时候获取其id,再偏移#finance_intros_wrap的top来显示相应的内容。
f]-->