问题描述
http://www.bootcss.com/base-css.html#images 例如这样的,会让那个‘图片’菜单处于选中状态! 问题补充:那么当我点击前进或者后退按钮的时候应该 触发什么方法呢?
解决方案
window.location.hash;得到 #images
解决方案二:
http://www.bootcss.com/base-css.html#images 里主要是涉及到html内部的锚点问题。你可以参考相关的资料学习下
解决方案三:
获取#的位置截取字符串的形式 例如:var url=window.location.href;//获取地址栏 urlvar index=url.indexOf('#');//获取#的位置var paramVal=url.substr(index,url.length);//获取 # 后面所有字符串
时间: 2024-10-12 23:37:26