Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将 jQuery BBQ 链接应用到不使用编号选项卡的页面,而是使用上一个和下一个按钮来更改相应的内容区域?谢谢!
您需要更具体,但基本上previous和next按钮只需要更改window.location.hash,以下函数将获取该更改:
previous
next
window.location.hash
$(window).hashchange(function() { var hash = window.location.hash; // deal with the hash here }); $(window).hashchange();