Ben eski window.performance.navigation
ve yeni performance.getEntriesByType("navigation")
aynı anda kullanarak her iki yöntemi kontrol etmek için bu işlevi yazdım :
function navigationType(){
var result;
var p;
if (window.performance.navigation) {
result=window.performance.navigation;
if (result==255){result=4} // 4 is my invention!
}
if (window.performance.getEntriesByType("navigation")){
p=window.performance.getEntriesByType("navigation")[0].type;
if (p=='navigate'){result=0}
if (p=='reload'){result=1}
if (p=='back_forward'){result=2}
if (p=='prerender'){result=3} //3 is my invention!
}
return result;
}
Sonuç açıklaması:
0: bir bağlantıyı tıklatma, URL'yi tarayıcının adres çubuğuna girme, form gönderme, Yer işaretini tıklama, bir komut dosyası işlemiyle başlatma.
1: Yeniden Yükle düğmesini tıklamak veyaLocation.reload()
2: Tarayıcı geçmişi ile çalışma (Bakc ve İleri).
3: gibi ön etkinlik<link rel="prerender" href="https://stackoverflow.com//example.com/next-page.html">
4: başka herhangi bir yöntem.