2012-10-13 54 views
0

我有一些jQuery的,但希望它只能運行當iPad處於縱向模式時,將鼠標懸停在iPad(橫向模式)處理腳本...檢測的iPad在縱向與jQuery

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); 
     }); 
    } 

我究竟做錯了什麼?

在此先感謝..

回答

-1

我有同樣的問題。 innerWidth()爲我工作我認爲,因爲。寬度()只會測試設備的實際寬度不會改變....