只是好奇是否有人可以在 Iphone/Ipad 上禁用 prettyphoto?我尝试了来自 prettyphoto 支持网站的这段代码,但似乎不起作用..
代码如下所示:
我在 head 标签的结尾添加了以下代码:
<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 的小屏幕上加载图像时,它们几乎看不到。
任何想法将不胜感激!