一个元素在纵向模式下在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');
}
});
你在哪里弄错了?
答案 0 :(得分:0)
我通常使用css ..但试试这个(未经测试)
if (navigator.userAgent.match(/(iPad)/i)) {
if ($(window).width() < 800) {
$(".fkup").css('margin-top','22px');
}
}
或CSS路线
@media (orientation:landscape) { }