문제

How can I change the scroll spy Bootstrap to make it work without hash?

this is standard operation:

<a href="#page"> Page </ a> 

But i would like to use it like this (without hash):

<a href="page"> Page </ a>

it is possible?

도움이 되었습니까?

해결책

Based on bootstrap docs:

Navbar links must have resolvable id targets. For example, a <a href="#home">home</a> must correspond to something in the DOM like <div id="home"></div>.

다른 팁

Instead of trying to change bootstrap, why not just do this:

<a href="#page"></a>
<a href="page">Page</a>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top