Jquery-Mobileロールイベント
1341 ワード
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title></title>
<link href="CSS/jquery.mobile-1.4.5.min.css" rel="stylesheet" />
<script src="JS/jquery.js"></script>
<script src="JS/jquery.mobile-1.4.5.js"></script>
<script>
$(document).on("pageinit", "#pageone", function () {
$(document).on("scrollstart", function () {
alert(" !");
});
});
$(document).on("pageinit", "#pageone", function () {
$(document).on("scrollstop", function () {
alert(" !");
});
});
</script>
リスニングスクロールイベントbody内にdata-role=「page」のdivリスニングスクロールイベントが必要である場合.
<div data-role="page" id="pageone">
<div data-role="header">
<h1>scrollstop </h1>
</div>
<div data-role="content">
</div>
<div data-role="footer">
<h1> </h1>
</div>
</div>