cordova學習四 事件Events

2021-07-03 10:12:42 字數 1083 閱讀 9251

deviceready:

當cordova完全載入,可以呼叫cordova api介面

支援平台:amazon、fire os、android、blackberry 10、ios、tizen、windows phone 8、windows 8

pause:

支援平台:amazon fire os、android、blackberry 10、ios、windows phone 8、windows 8

resume:

支援平台:amazon fire os、android、blackberry 10、ios、windows phone 8、windows 8

backbutton:

按下手機返回按鈕時監聽的事件

支援平台:amazon fire os、android、blackberry 10、windows phone 8

menubutton:

按下手機上選單按鈕時監聽的事件

支援平台:amazon fire os、android、blackberry 10

searchbutton:

按下手機上搜尋按鈕時監聽的事件

支援平台:android

startcallbutton:

按下撥號按鈕時監聽的事件

支援平台:blackberry 10

endcallbutton:

按下結束通話鍵時監聽的事件

支援平台:blackberry 10

volumedownbutton:

監聽音量減鍵事件

支援平台:blackberry 10、android

volumeupbutton:

監聽音量加鍵事件

支援平台:blackberry 10、android

**舉例:

cordova事件 外掛程式

sn 事件 描述 1deviceready 當cordova 載入完成後該事件被觸發。這有助於確保在載入之前的一切 cordova 函式不會被呼叫。2 pause 當應用程式被置於後台,則觸發 此事件。3resume 當應用程式從後台返回,則觸發 此事件。4backbutton 當按下後退按鈕時,則...

JS基礎學習四 繫結事件

b 新增事件 b ie attachevent other addeventlistener var button document.getelementbyid buttonid if button.addeventlistener else if button.attachevent b 刪除事...

jQuery學習筆記四(jquery事件註冊)

原生js註冊相同的事件之後,後面註冊的會覆蓋掉前面註冊的,而jquery事件,後面註冊的不會覆蓋前面註冊的,這增強了事件處理能力。jquery的隱式迭代 jquery中如果選擇器可以找到零個,乙個或多個元素找到多個元素 當找到的是多個元素的時候,得到的實際上是乙個元素的集合,執行設定操作的時候,會對...