我的项目里面需要做一个像浏览器功能一模一样的前后键,现在的做法是用javascript
<div class="goorback">
<a href="javascript:window.history.back()">
<img src="/Content/FireImages/left.gif" width="20" alt=""/>
</a>
<a href="javascript:window.history.go(+1)">
<img src="/Content/FireImages/right.gif" width="20" alt=""/>
</a>
</div>
使用了两个图标,客户现在还要求要想浏览器一样,如果当前已经是第一页了,则前一页的图标是灰色的,我现在遇到的问题是我不知道怎么判断当前页还有么有前一页或后一页