码迷,mamicode.com
首页 > 其他好文 > 详细

angular 播放视频

时间:2017-04-10 11:38:06      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:ring   replace   dsr   html   code   link   watch   ams   word   

html : <embed embed-src="...">

app.directive(‘embedSrc‘, function () { return { restrict: ‘A‘, link: function (scope, element, attrs) { var current = element; scope.$watch(function() { return attrs.embedSrc; }, function () { var clone = element .clone() .attr(‘src‘, attrs.embedSrc); current.replaceWith(clone); current = clone; }); } }; })

angular 播放视频

标签:ring   replace   dsr   html   code   link   watch   ams   word   

原文地址:http://www.cnblogs.com/zyzhao/p/6687524.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!