如何在用户将移动设备转为横向时刷新网页

时间:2012-01-13 09:46:36

标签: javascript jquery html

我正在为Android和iPhone做一个Web应用程序。我的问题是,当用户去景观时我想刷新网页。由于我是javascript的初学者,我不知道该怎么做。请帮帮我

2 个答案:

答案 0 :(得分:5)

您可以使用orientationchange jQuery Mobile事件,然后执行

window.location.reload(); 

刷新页面。

例如:

$(function(){

// Set Inital orientation
// get the initial orientation from window which
// returns 0 for portrait and 1 for landscape
if(window.orientation == 0){
    var ori = "portrait";
}else{
    var ori = "landscape";
}
changeOrientation(ori);

// Orientation Change
// When orientation changes event is triggered
// exposing an orientation property of either
// landscape or portrait
$('body').bind('orientationchange',function(event){
    changeOrientation(event.orientation)
})

// Change the style dependengt on orientation
function changeOrientation(ori){
    // Remove all classes separated by spaces
    $("#orientation").removeClass('portrait landscape');
    $("#orientation").addClass(ori);
    $("#orientation").html("<p>"+ori.toUpperCase()+"</p>");
}

});

答案 1 :(得分:0)

您可以使用计时器并定期检查:

if (window.innerHeight > window.innerWidth) {
    // Redirect code, window.location...
}