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