我在學習jQuery Mobile時發現了一個奇怪的行爲。以下是我的測試代碼。螢火蟲顯示「test.js」被加載了兩次,如果我把腳本標記放入正文(甚至「test.js」爲空)。這是一個錯誤,或者當我們使用jQuery Mobile時,我們無法將腳本標記放入正文中?當腳本標記嵌入到body中時,jQuery + jQuery移動腳本兩次加載腳本
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>test</title>
<link href="http://code.jquery.com/mobile/latest/jquery.mobile.min.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/latest/jquery.mobile.min.js"></script>
</head>
<body>
<script type="text/javascript" src="/test.js"></script>
</body>
</html>