-3
我試圖測試嵌入到HTML中的腳本需要多長時間,並需要多長時間外部JavaScript執行。我試圖找到我的代碼的執行時間,但它不工作
進出口試圖:
UPDATE:
<!DOCTYPE html>
<html>
<body>
<h1>External JavaScript</h1>
<p id="demo">A Paragraph.</p>
<button type="button" onclick="myFunction()">Try it</button>
<p>(myFunction is stored in an external file called "myScript.js")</p>
<script src="myScript.js"></script>
<script>
var t0 = performance.now();
myFunction();
var t1 = performance.now();
console.log("Call to doSomething took " + (t1 - t0) + " milliseconds.")
</script>
</body>
</html>
沒有定時被輸出。
你知道這是java代碼嗎?不是JavaScript它只是不會工作 –
時間?這是否首先執行? –
真的有用嗎? –