我在angularjs里引用了prettyphoto的插件,代码如下:
JS:
app.directive('prettyp', function(){
return function(scope, element, attrs){
$("[rel^='prettyPhoto']").prettyPhoto();
}
})
Html:
<div ng-repeat="slide in slides" prettyp>
<a rel="prettyPhoto[main]" ng-href="{{slide.path}}"><img src="{{slide.path}}"></a>
</div>
在PC上各种浏览器都试过都是可以的。但是到了手机上就不行。我用iphone上的chrome还有safari都试过了都不行,关了block pop-up的按钮也没用。有人知道要怎么解决这个问题么?