「jQuery Mobile」scrollstartイベントのサンプル

2020年11月6日

構文
$(" selector “).on(“scrollstart",function(event){…})
JSコード

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$(document).on("scrollstart",function(){
alert("Started scrolling! test");
});
$(document).on("scrollstart",function(){ alert("Started scrolling! test"); });
$(document).on("scrollstart",function(){
  alert("Started scrolling! test");
});

htmlコード
<div data-role="main" class="ui-content">
testa111
</div>

jQuery Mobile

Posted by arkgame