jquery – Twitter BootStrap Carousel为什么在url末尾添加了hashtag

前端之家收集整理的这篇文章主要介绍了jquery – Twitter BootStrap Carousel为什么在url末尾添加了hashtag前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在使用Carousel(滑块),当我点击下一个和上一个按钮时,它添加标签#cptbc_105在url的末尾我想删除这个,旋转木马小跳,我不知道为什么这个发生的页面上升当我点击下一个按钮.

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

请帮我,
谢谢.

解决方法

似乎“cptbc_105”是你的旋转木马的id.页面URL更改是因为您在左右按钮上使用了href =“#cptbc_105”.只需将“href”attr更改为“data-target”attr,并且每次操作都能正常工作.

更改:

< a class =“right carousel-control”href =“#cptbc_105”role =“button”data-slide =“next”>
< span class =“sr-only”>下一步< / span>
< / A>

至:

< a class =“right carousel-control”data-target =“#cptbc_105”role =“button”data-slide =“next”>< span class =“sr-only”>下一步< / span>< / A>

原文链接:https://www.f2er.com/jquery/241591.html

猜你在找的jQuery相关文章