markdown ページ読み込み种类の判别
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown ページ読み込み种类の判别相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ページ読み込み種類の判別</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.3.0/milligram.min.css">
</head>
<body>
<h1>下層ページ</h1>
<script type="text/javascript">
document.open();
if (window.performance.navigation.type === 0/* TYPE_NAVIGATE */) {
document.write('<h2>読み込み種類:お初</h2>');
} else if (window.performance.navigation.type === 1/* TYPE_RELOAD */) {
document.write('<h2>読み込み種類:リロード</h2>');
} else if (window.performance.navigation.type === 2/* TYPE_BACK_FORWARD */) {
document.write('<h2>読み込み種類:履歴たどってる</h2>');
} else {
document.write('<h2>読み込み種類:その他</h2>');
}
document.close();
</script>
<a href="./index.html">トップページへ</a>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ページ読み込み種類の判別</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/milligram/1.3.0/milligram.min.css">
</head>
<body>
<h1>トップページ</h1>
<script type="text/javascript">
document.open();
if (window.performance.navigation.type === 0/* TYPE_NAVIGATE */) {
document.write('<h2>読み込み種類:お初</h2>');
} else if (window.performance.navigation.type === 1/* TYPE_RELOAD */) {
document.write('<h2>読み込み種類:リロード</h2>');
} else if (window.performance.navigation.type === 2/* TYPE_BACK_FORWARD */) {
document.write('<h2>読み込み種類:履歴たどってる</h2>');
} else {
document.write('<h2>読み込み種類:その他</h2>');
}
document.close();
</script>
<a href="./index2.html">下層ページへ</a>
</body>
</html>
# ページ読み込み種類の判別
- [Navigation Timing API](https://developer.mozilla.org/ja/docs/Web/API/Navigation_timing_API) を使用
以上是关于markdown ページ読み込み种类の判别的主要内容,如果未能解决你的问题,请参考以下文章
sh CoreOSのcloud-configを特定のファイルから再読み込みする。なお,YAMLは公式バリデーから検证もできるhttps://coreos.com/validate/
javascript データの読み込み
php カスタムフィールド画像読み込み
html CSSで読み込み时にフェードイン
html CSSで読み込み时にフェードイン
javascript 画像の読み込みやるやつ最小版