次の構文のindex.html
ファイルがあります
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>
<body>
<a href="occassion.html">
<img class="frametoicon" src="img/occasion.png" />
</a>
</body>
</html>
次に、次のような機能を持つoccassion.html
ページがありますbody onload
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Occassion</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script>
function loaded() {
alert("hii");
}
</script>
</head>
<body onLoad="loaded()">
</body>
</html>
しかし、onload
機能が起動しません....ページを更新しようとすると(occassion.html
)、onload
機能が起動します... からナビゲートしたときに機能しないのはなぜindex.html
ですか?
jQueryファイルを削除すると、期待どおりに機能します....何が足りないのですか?
これも機能していません
$(document).ready(function () {
loaded();
});
編集
追加した
<script>
$(document).bind("pagechange", function (event, data) {
console.log(data);
var toPage = data.toPage[0].id;
alert(toPage);
if (toPage == "page2")
alert("hello");
});
</script>
そしてoccassion.htmlに以下を入れてください
<div data-role="page" id="page2">
hello
</div>
驚いたことに、アラート (hello) も発生していませんが、hello も表示されず、アラート (topage) が空になっています。
どうですか?何が足りない