2ページあります。1 つ目は、2 番目のページをロードするスクリプトを含む index.html です。2 番目のページには、実行してアラートを表示することになっている jquery スクリプトがあります。
以下に示すコードでは、質問を簡素化するために余分なものをすべて削除しました。
index.html のコード:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v = "urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>Testing</title>
<link type="text/css" rel="stylesheet" href="./review/includes/look.css" />
</head>
<body class="review offline" tabindex="0">
<div id="sidepanel" class="hidden">
<div class="section" >
<div id="navigation" class="rounded-border">
<ul id="navigationtree">
<li class="leaf last" title="Home">
<ins class="icon"> </ins><a href="screens/alertPage" tabindex="-1"></a>
</li>
</ul>
</div>
</div>
</div>
<div id="jim-mainWindow">
<div id="jim-body" class="full web" >
<div id="simulation" class="firer"></div>
</div>
</div>
<script type="text/javascript" src="./review/includes/j.js"></script>
<script type="text/javascript">jQuery(document).ready(function(){jimMain.init("screens/alertPage");});</script>
</body>
</html>
2 ページ目のコードは次のとおりです。
<html>
<body>
<script src="jquery-1.10.1.js"></script>
<script>
jQuery(document).ready(function(){
alert("hi there");
}
}
</script>
</body>
</html>
1) jquery-1.10.1.js ページが alertPage.html と同じディレクトリにあることを確認しましたレンダリング中。
ここで何が欠けていますか?