Jquery:如果用户代理和宽度,那么

时间:2014-05-01 21:16:13

标签: jquery css ipad

一个元素在纵向模式下在ipad上运行,因此尝试通过jquery为它设置自定义css。

这是我的代码

$(document).ready(function(){
var isiPad = navigator.userAgent.match(/iPad/i) != null;
if (isiPad > -1 &&  $(window).width() < 800)
{
$(".fkup").css('margin-top','22px');
}            
});
你在哪里弄错了?

1 个答案:

答案 0 :(得分:0)

我通常使用css ..但试试这个(未经测试)

if (navigator.userAgent.match(/(iPad)/i)) {
    if ($(window).width() < 800) {
        $(".fkup").css('margin-top','22px');
    } 
}

或CSS路线

@media (orientation:landscape) { }