Twitter BootStrap Carousel为什么在url末尾添加了#标签

时间:2014-01-08 10:54:25

标签: jquery twitter-bootstrap carousel

我正在使用Carousel(滑块),当我点击下一个和上一个按钮时,它添加了标签#cptbc_105在url的末尾我想删除这个,旋转木马小跳,我不知道为什么这个发生的页面上升时我点击下一步按钮。

这是网址:http://goo.gl/m3BlBU

请帮帮我, 感谢。

1 个答案:

答案 0 :(得分:13)

似乎" cptbc_105"是你的旋转木马的id。页面URL更改,因为您使用href ="#cptbc_105"在你的左右按钮上。只需改变" href" attr到"数据目标" attr和everyhing将正常工作。

更改:

<a class="right carousel-control" href="#cptbc_105" role="button" data-slide="next"> <span class="sr-only">Next</span> </a>

<a class="right carousel-control" data-target="#cptbc_105" role="button" data-slide="next"> <span class="sr-only">Next</span> </a>