我需要强制iPad上的网站a)检测方向和b)在纵向时强制定位到景观..
使用检测到方向正确的代码但尝试了各种帖子等的一系列片段无法实现步骤b(而不是警报......)。
当然不会那么复杂 - 任何帮助都会非常感激!
detectOrientation();
window.onorientationchange = detectOrientation;
function detectOrientation(){
if(typeof window.onorientationchange != 'undefined'){
if ( orientation == 0 ) {
alert('portrait');
}
else if ( orientation == 90 ) {
alert('landscape');
}
else if ( orientation == -90 ) {
alert('landscape');
}
else if ( orientation == 180 ) {
alert('portrait');
}
}
}