您可能想要创建一个指令,实际上我将把hires作为属性,因此默认情况下它以绝杀开头。
JS:
app.directive('hires', function() { return { restrict: 'A', scope: { hires: '@' }, link: function(scope, element, attrs) { element.one('load', function() { element.attr('src', scope.hires); }); } };});
HTML:
<img hires="http://localhost/hi-res-image.jpg" src="http://localhost/low-res-image.jpg" />
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)