Questions tagged «event-listener»



3
document.addEventListener和window.addEventListener之间的区别?
使用PhoneGap时,它具有一些使用的默认JavaScript代码document.addEventListener,但是我有自己的代码使用window.addEventListener: function onBodyLoad(){ document.addEventListener("deviceready", onDeviceReady, false); document.addEventListener("touchmove", preventBehavior, false); window.addEventListener('shake', shakeEventDidOccur, false); } 有什么区别,哪个更好使用?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.