当我使用orientationchange时,它在检查Ipad时永远不会被触发。
$(window).bind('orientationchange',function(e){
alert("orientationchange");
});
有什么东西我不见了。 我正在使用jQuery v@1.8.0
答案 0 :(得分:0)
jQuery mobile提供的仅仅是这个。
if (window.addEventListener) { // IE 6, 7 check
window.addEventListener("orientationchange", function () {
// do your stuff here
}, false);
}