我在</html>標記之前添加我的JavaScript文件。但是我的一個腳本計算了我的網頁的運行時間。所以我需要在我的HTML頁面的第一部分放置一個腳本。腳本是這樣的:HTML頁面頂部的腳本標記
<script type="text/javascript">
var NREUMQ=NREUMQ || [];
NREUMQ.push(["mark","firstbyte",new Date().getTime()]);
</script>
什麼是最好的線腳本放入?
1: <!DOCTYPE html>
2: <html xmlns="http://www.w3.org/1999/xhtml" lang="tr">
3: <head>
4: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5: <title> example - example.com </title>
6: <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
7: <meta name="keywords" content="my words"/>
8: <meta property="fb:page_id" content="12345" />
9:
10: <link rel="stylesheet" type="text/css" href="bootstrap.min.css"/>
11:
12: <script type="text/javascript" src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
13:
14: <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico"/>
15: <link rel="icon" type="image/x-icon" href="/favicon.ico" />
16: <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/apple-touch-icon-114-precomposed.png"/>
17:
18: <link rel="alternate" hreflang="tr" href="http://example.com/"/>
19: <link rel="alternate" hreflang="en" href="http://example.com/eng"/>
20:
21: <link rel="stylesheet" type="text/css" href="/css/colorbox.css"/>
22: <link rel="stylesheet" type="text/css" href="/css/demo_table.css"/>
23: </head>
24: <body>
之間是你的腳本,我加入其餘的腳本只是< /html >標記之前。 – trante
然後第3行將會很好。 –