使用bootstrap,我在这里设置了一个示例:http://fixitup.com.au/clients/bootstrap/issue.html
使用scrollto作为主站点,以及twitter bootstraps,tabs。我发现当你点击一个标签时,页面会跳起来。
我将onclick="return false;"
添加到标签的href中。
像:
<ul id="myTab" class="nav nav-tabs">
<li class="active"><a href="#about" data-toggle="tab" onclick="return false;">About Me</a></li>
<li><a href="#ripoffs" data-toggle="tab" onclick="return false;">My Ripoffs</a></li>
</ul>
我需要使用scrollto,我需要标签...但我需要停止页面跳跃,它让我疯狂。有什么建议吗?
补充:滚动的js位于下面的aruo.js代码中:
// Any links with hash tags in them (can't do ^= because of fully qualified URL potential)
$('a[href*=#]').each(function() {
// Ensure it's a same-page link
var thisPath = filterPath(this.pathname) || locationPath;
if ( locationPath == thisPath
&& (location.hostname == this.hostname || !this.hostname)
&& this.hash.replace(/#/,'') ) {
// Ensure target exists
var $target = $(this.hash), target = this.hash;
if ($(target).length > 0) {
// Find location of target
var targetOffset = $target.offset().top;
$(this).click(function(event) {
// Prevent jump-down
event.preventDefault();
// Animate to target
$(scrollElem).animate({scrollTop: targetOffset}, 1100, 'swing', function() {
// Set hash in URL after animation successful
location.hash = target;
});
});
}
}
});
// Use the first element that is "scrollable" (cross-browser fix?)
function scrollableElement(els) {
for (var i = 0, argLength = arguments.length; i <argLength; i++) {
var el = arguments[i],
$scrollElement = $(el);
if ($scrollElement.scrollTop()> 0) {
return el;
} else {
$scrollElement.scrollTop(1);
var isScrollable = $scrollElement.scrollTop()> 0;
$scrollElement.scrollTop(0);
if (isScrollable) {
return el;
}
}
}
return [];
}
});
答案 0 :(得分:2)
您是否只能修改选择器以使滚动功能不应用于选项卡?
取决于attr,classes等..可用。
在这个例子中,我使用:not selector来排除类“foo”
的元素对于您的示例,将选择器更改为:
$('a [href * =#]:not([data-toggle =“tab”])')。each(function(){
可能会工作吗?