これは不可能かもしれないと思うので、できる限り説明しようとします。タブ(jquery powered)を含むページがあり、以下によって制御されます。
前の質問で別のユーザーから提供されたこのコードを使用しています。
<script type="text/javascript">
$(function() {
$('html, body').animate({scrollTop:0}); // this is my "fix"
var tabContent = $(".tab_content");
var tabs = $("#menu li");
var hash = window.location.hash;
tabContent.not(hash).hide();
if(hash=="") {
$('#tab1').fadeIn();
}
tabs.find('[href=' + hash + ']').parent().addClass('active');
tabs.click(function() {
$(this).addClass('active').siblings().removeClass('active');
tabContent.hide();
var activeTab = $(this).find("a").attr("href");
$(activeTab).fadeIn();
return false;
});
});
</script>
このコードは、「タブ」ページに直接アクセスするとうまく機能します。
ただし、他のページから個別のタブにリンクする必要があります。そのために、コードはwindow.location.hash
を取得し、適切なタブを表示します。
「falseを返す」ため、ページはアンカーに「ジャンプ」しません。
ただし、このイベントはクリックイベントでのみトリガーされます。したがって、他のページから「タブ」にアクセスすると、「ジャンプ」効果がトリガーされます。これに対抗するために、私は自動的にページの上部にスクロールしますが、私はむしろそうはなりませんでした。
ページの読み込み時に「falseを返す」をシミュレートして、アンカーの「ジャンプ」が発生しないようにする方法はありますか。
これが十分に明確であることを願っています。
ありがとう
修正は機能しませんか?質問を正しく理解しているかどうかわかりません。デモページはありますか?あなたが試すことができます:
if (location.hash) {
setTimeout(function() {
window.scrollTo(0, 0);
}, 1);
}
編集:Firefoxでテストされ、動作します。WindowsではIE&Chrome。
編集2:setTimeout()
をif
ブロック内に移動し、@ vsyncをサポートします。
ここで私の答えを参照してください: Stackoverflow Answer
トリックは、ハッシュタグをできるだけ早く削除し、その値をユーザーが使用するために保存することです。
コードのその部分を$()または$(window).load()関数に入れないことが重要です。遅れてしまい、ブラウザはすでにタグに移動しているためです。
// store the hash (DON'T put this code inside the $() function, it has to be executed
// right away before the browser can start scrolling!
var target = window.location.hash,
target = target.replace('#', '');
// delete hash so the page won't scroll to it
window.location.hash = "";
// now whenever you are ready do whatever you want
// (in this case I use jQuery to scroll to the tag after the page has loaded)
$(window).on('load', function() {
if (target) {
$('html, body').animate({
scrollTop: $("#" + target).offset().top
}, 700, 'swing', function () {});
}
});
どのタブを使用しているかを追跡する方法は他にもあります。おそらく、Cookieの設定、または非表示フィールドの値など。
ロード時にページをジャンプさせたくない場合は、ハッシュよりもこれらの他のオプションのいずれかを使用する方が良いと言えます。なぜなら、ハッシュを優先して使用する主な理由は、 'ブロックしたいです。
別のポイント-ハッシュリンクがドキュメント内のタグの名前と一致しない場合、ページはジャンプしません。したがって、おそらくハッシュを使い続けたい場合は、タグの名前が異なるようにコンテンツを操作できます。一貫したプレフィックスを使用する場合、Javascriptを使用してその間をジャンプできます。
お役に立てば幸いです。
私はdave1010のソリューションを使用しましたが、$()。ready関数内に配置すると少しびくびくしました。だから私はこれをしました:($()。ready内ではありません)
if (location.hash) { // do the test straight away
window.scrollTo(0, 0); // execute it straight away
setTimeout(function() {
window.scrollTo(0, 0); // run it a bit later also for browser compatibility
}, 1);
}
アドレス内に http://site.com/#abc ハッシュがあり、id = "abc"の要素が表示されている場合、ブラウザは<element id="abc" />
にジャンプします。したがって、デフォルトで要素を非表示にする必要があります:<element id="anchor" style="display: none" />
。ページにid = hashの可視要素がない場合、ブラウザはジャンプしません。
Urlのハッシュをチェックし、prrpopriate要素(デフォルトでは非表示)を見つけて表示するスクリプトを作成します。
Onclickイベントをリンクにバインドし、onclickイベントの結果としてreturn false;
を指定することにより、デフォルトの「ハッシュのようなリンク」動作を無効にします。
タブを実装するとき、私はそのような何かを書きました:
<script>
$(function () {
if (location.hash != "") {
selectPersonalTab(location.hash);
}
else {
selectPersonalTab("#cards");
}
});
function selectPersonalTab(hash) {
$("#personal li").removeClass("active");
$("a[href$=" + hash + "]").closest("li").addClass("active");
$("#personaldata > div").hide();
location.hash = hash;
$(hash).show();
}
$("#personal li a").click(function (e) {
var t = e.target;
if (t.href.indexOf("#") != -1) {
var hash = t.href.substr(t.href.indexOf("#"));
selectPersonalTab(hash);
return false;
}
});
</script>
アンカーが使用されるたびにスクロールされたままになるように修正されたCSS
.elementsWithAnchorIds::before {
content: "";
display: block;
height: 9999px;
margin-top: -9999px; //higher thin page height
}
答えのどれも私には十分に機能しません。アンカーにページジャンプしてから、いくつかのソリューションのトップに移動することがあります。いくつかの答えはまったく機能せず、何年も変わる可能性があります。私の機能が誰かに役立つことを願っています。
/**
* Prevent automatic scrolling of page to anchor by browser after loading of page.
* Do not call this function in $(...) or $(window).on('load', ...),
* it should be called earlier, as soon as possible.
*/
function preventAnchorScroll() {
var scrollToTop = function () {
$(window).scrollTop(0);
};
if (window.location.hash) {
// handler is executed at most once
$(window).one('scroll', scrollToTop);
}
// make sure to release scroll 1 second after document readiness
// to avoid negative UX
$(function () {
setTimeout(
function () {
$(window).off('scroll', scrollToTop);
},
1000
);
});
}
受け入れられた答えはうまくいきますが、時々、特に大きな画像を含むページでは、スクロールバーを使用して乱暴にジャンプすることがわかりました
window.scrollTo(0, 0);
これは、ユーザーの気を散らすものです。
最終的に解決した解決策は実際には非常に単純であり、location.hash
で使用されるものとは異なるIDをターゲットで使用することです。
例えば:
他のページのリンクはこちら
<a href="/page/with/tabs#tab2">Some info found in tab2 on tabs page</a>
したがって、タブページにtab2
のIDを持つ要素がある場合、ウィンドウはロード時にその要素にジャンプします。
したがって、IDに何かを追加して、それを防ぐことができます。
<div id="tab2-noScroll">tab2 content</div>
そして、"-noScroll"
をjavascriptのlocation.hash
に追加できます。
<script type="text/javascript">
$(function() {
var tabContent = $(".tab_content");
var tabs = $("#menu li");
var hash = window.location.hash;
tabContent.not(hash + '-noScroll').hide();
if(hash=="") { //^ here
$('#tab1-noScroll').fadeIn();
}
tabs.find('[href=' + hash + ']').parent().addClass('active');
tabs.click(function() {
$(this).addClass('active').siblings().removeClass('active');
tabContent.hide();
var activeTab = $(this).find("a").attr("href") + '-noScroll';
//^ and here
$(activeTab).fadeIn();
return false;
});
});
</script>
私の場合、CSSポップアップにアンカーリンクを使用しているため、この方法を使用しました。
クリックして最初にpageYOffsetを保存し、ScrollTopをそれに設定するだけです。
$(document).on('click','yourtarget',function(){
var st=window.pageYOffset;
$('html, body').animate({
'scrollTop' : st
});
});
機能をやり直さずにUIタブの方法を見つけたと思います。これまでのところ、私は問題を発見していません。
$( ".tabs" ).tabs();
$( ".tabs" ).not(".noHash").bind("tabsshow", function(event, ui) {
window.location.hash = "tab_"+ui.tab.hash.replace(/#/,"");
return false;
});
var selectedTabHash = window.location.hash.replace(/tab_/,"");
var index = $( ".tabs li a" ).index($(".tabs li a[href='"+selectedTabHash+"']"));
$( ".tabs" ).not(".noHash").tabs('select', index);
すべて準備完了イベント内。ハッシュに「tab_」を追加しますが、クリックされたときとハッシュでページがロードされたときに機能します。
ページがスクロールされたかどうかを確認してから、位置をリセットしてください:
var scrolled = false;
$(window).scroll(function(){
scrolled = true;
});
if ( window.location.hash && scrolled ) {
$(window).scrollTop( 0 );
}
これらのソリューションで一貫して成功したことはありません。
どうやらJavascript => reference( http://forum.jquery.com/topic/preventing-anchor-jump )の前にジャンプが発生するためです
私の解決策は、CSSでデフォルトですべてのアンカーを上部に配置することです。
.scroll-target{position:fixed;top:0;left:0;}
次に、jqueryを使用して、ターゲットアンカーの親または兄弟(おそらく空のemタグ)までスクロールします。
<a class="scroll-target" name="section3"></a><em> </em>
ハッシュ付きでURLが入力されたときのスクロールのjqueryの例
(ウィンドウ/タブにページが既にロードされていてはいけません。これは他/外部ソースからのリンクをカバーします)
setTimeout(function() {
if (window.location.hash) {
var hash = window.location.hash.substr(1);
var scrollPos = $('.scroll-target[name="'+hash+'"]').siblings('em').offset().top;
$("html, body").animate({ scrollTop: scrollPos }, 1000);
}
}, 1);
また、ページ上でのアンカークリックのデフォルトを防止してから、ターゲットまでスクロールすることもできます。
<a class="scroll-to" href="#section3">section three</a>
およびjquery
$('a.scroll-to').click(function(){
var target = $(this).attr('href').substr(1);
var scrollPos = $('.scroll-target[name="'+target+'"]').siblings('em').offset().top;
$("html, body").animate({ scrollTop: scrollPos }, 1000);
return false;
});
この方法の良い点は、アンカータグターゲットです。CSSの位置は上部ですが、関連するコンテンツの横に構造的に残ります。
これは、検索エンジンのクローラーに問題がないことを意味するはずです。
乾杯、これがお役に立てば幸いです
グレー
これはbootstrap v3で動作します
$(document).ready(function() {
if ($('.nav-tabs').length) {
var hash = window.location.hash;
var hashEl = $('ul.nav a[href="' + hash + '"]');
hash && hashEl.tab('show');
$('.nav-tabs a').click(function(e) {
e.preventDefault();
$(this).tab('show');
window.location.hash = this.hash;
});
// Change tab on hashchange
window.addEventListener('hashchange', function() {
var changedHash = window.location.hash;
changedHash && $('ul.nav a[href="' + changedHash + '"]').tab('show');
}, false);
}
});
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<div class="container">
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#home">Home</a></li>
<li><a data-toggle="tab" href="#menu1">Menu 1</a></li>
</ul>
<div class="tab-content">
<div id="home" class="tab-pane fade in active">
<h3>HOME</h3>
<p>Some content.</p>
</div>
<div id="menu1" class="tab-pane fade">
<h3>Menu 1</h3>
<p>Some content in menu 1.</p>
</div>
</div>
</div>
Firefoxの上記のsetTimeout
メソッドではあまり成功しませんでした。
SetTimeoutの代わりに、onload関数を使用しました。
window.onload = function () {
if (location.hash) {
window.scrollTo(0, 0);
}
};
残念ながら、まだ非常にグリッチです。
これを行うことで私の問題を解決しました:
// navbar height
var navHeigth = $('nav.navbar').height();
// Scroll to anchor function
var scrollToAnchor = function(hash) {
// If got a hash
if (hash) {
// Scroll to the top (prevention for Chrome)
window.scrollTo(0, 0);
// Anchor element
var term = $(hash);
// If element with hash id is defined
if (term) {
// Get top offset, including header height
var scrollto = term.offset().top - navHeigth;
// Capture id value
var id = term.attr('id');
// Capture name value
var name = term.attr('name');
// Remove attributes for FF scroll prevention
term.removeAttr('id').removeAttr('name');
// Scroll to element
$('html, body').animate({scrollTop:scrollto}, 0);
// Returning id and name after .5sec for the next scroll
setTimeout(function() {
term.attr('id', id).attr('name', name);
}, 500);
}
}
};
// if we are opening the page by url
if (location.hash) {
scrollToAnchor(location.hash);
}
// preventing default click on links with an anchor
$('a[href*="#"]').click(function(e) {
e.preventDefault();
// hash value
var hash = this.href.substr(this.href.indexOf("#"));
scrollToAnchor(hash);
});`
これを試して、クライアントがhashchanged(イベントハンドラー内)で垂直スクロールを行わないようにします。
var sct = document.body.scrollTop;
document.location.hash = '#next'; // or other manipulation
document.body.scrollTop = sct;
(ブラウザの再描画)