# jQuery Mobile 滾屏事件
jQuery Mobile 提供了兩種滾屏事件:滾屏開始時觸發和滾動結束時觸發。
## jQuery Mobile 滾屏開始(Scrollstart)
scrollstart 事件是在用戶開始滾動頁面時觸發:
## 實例
```
$(document).on("scrollstart",function(){
alert("Started scrolling!");
});
```
> 
> **注意:**iOS 設備在滾屏時鎖定 DOM 操作,這意味著當用戶滾屏時不可能改變任何東西。然而,jQuery 團隊正在為此尋找解決方案。
## jQuery Mobile 滾屏結束(Scrollstop)
scrollstop 事件是在用戶停止滾動頁面時觸發:
## 實例
```
$(document).on("scrollstop",function(){
alert("Stopped scrolling!");
});
```
- jQuery Mobile 簡介
- jQuery Mobile 安裝
- jQuery Mobile 頁面
- jQuery Mobile 頁面切換
- jQuery Mobile 按鈕
- jQuery Mobile 按鈕圖標
- jQuery Mobile 工具欄
- jQuery Mobile 導航欄
- jQuery Mobile 可折疊塊
- jQuery Mobile 網格
- jQuery Mobile 列表視圖
- jQuery Mobile 列表內容
- jQuery Mobile 表單
- jQuery Mobile 表單輸入元素
- jQuery Mobile 表單選擇菜單
- jQuery Mobile 表單滑動條
- jQuery Mobile 主題
- jQuery Mobile 事件
- jQuery Mobile 觸摸事件
- jQuery Mobile 滾屏事件
- jQuery Mobile 方向改變事件
- jQuery Mobile Data 屬性
- jQuery Mobile 圖標
- jQuery Mobile 事件
- jQuery Mobile 頁面事件
- jQuery Mobile CSS 類
- 免責聲明