我有一些jQuery,但希望它只在iPad处于纵向模式时运行,将鼠标悬停在iPad(横向模式)处理脚本......
var portraitWidth = $(window).width(); //detect the iPad in Portrait orientation
if (portraitWidth < 769) {
$('.model-selector h2:first-child').toggle(function () {
$(this).parent().animate({
top: '-138px'
}, 250);
}, function () {
$('.model-selector').animate({
top: '-45px'
}, 250);
});
}
我做错了什么?
提前致谢..
答案 0 :(得分:-1)
我有同样的问题。 innerWidth()对我有用,我认为因为.width()只测试设备的实际宽度不会改变....