PerformanceResourceTiming.domainLookupEnd

PerformanceResourceTiming.domainLookupEnd - час після завершення пошук доменних імен для ресурсу.

Синтаксис:

PerformanceResourceTiming.domainLookupEnd;

Параметри:

PerformanceResourceTiming - об'єкт PerformanceResourceTiming.

Опис:

domainLookupEnd властивість об'єкта PerformanceResourceTiming яка містить час в мілісекундах коли браузер завершує пошук доменних імен для ресурсу в поточній веб-сторінці.

Приклад:

var prt=performance.getEntriesByType('resource'); alert(prt[0].domainLookupEnd); var prt=performance.getEntriesByType('resource'); var s=''; for(var i=0;i<prt.length;i++) s+=i+' name= '+prt[i].name+', domainLookupEnd='+prt[i].domainLookupEnd+'\n'; alert(s);