2012-07-17 41 views
0

只是好奇,如果有人有禁用Iphone/Ipad上prettyphoto的方式?我想這一塊從prettyphoto支持網站的代碼,但似乎並沒有工作..禁用iPhone上的prettyphoto/ipad

代碼如下所示:

我說在我的頭標記的結束下面的代碼:

<script type="text/javascript"> 
function checkforIpad() { 
    var userAgent = window.navigator.userAgent; 
    if (userAgent.match(/iPad/i) || userAgent.match(/iPhone/i)) { 

    //do nothing 
    } 
    else{ 

    $(document).ready(function() { 
    $("a[rel^='prettyPhoto']").prettyPhoto(); 
    }); 
    }} 
</script> 

任何想法,爲什麼它似乎沒有工作?這是我的一個WordPress主題,我想禁用prettyphoto。當在小型iphone屏幕上加載圖像時,它們幾乎看不見。

任何想法將不勝感激!

+1

你真的在函數聲明後調用'checkforIpad()'嗎? – 2012-07-17 04:36:14

回答

0

在wordpress上,您可以聲明global $is_iphone;,然後在函數中測試它的值。你可能有興趣看看你的wp-includes/vars.php file