clickJump

当 a 链接的 href 是形如 'javascript:;' 时,为其绑定点击通过 window.location.href 来进行页面跳转将会失败; href 为 '#' 时不会。

解决方法:

1. 点击处理函数增加阻止默认事件

2. reset href



1. href is #

2. href is javascript:; will not jump in ie6

3. href is javascript:; make it jump by preventDefault

4. href is javascript:; make it jump by reset href to '#'