SharePoint 2013 处理videoplayerpage.aspx下的个人图片显示有误问题

问题:
Personal site's photo can't correct display in the videos page
The url address of personal site's photo is exist surplus characters. 
The correct situation is just the characters of "%20", not the characters of "%2520".
 
解决方式:
1、编辑状态下(Edit Page)添加内容编辑器部件(Content Editor)
2、为编辑器内容编写以下JQuery脚本内容:
1 <script type="text/javascript">
2 $(function() {
3   var $userImg = $('.ms-peopleux-userImg');
4   $userImg.attr('src',$userImg.attr('src').replace(/\%2520/g,'%20'));
5 });
6 </script>
 
默认展示方式(不合理的情况):
 
posted @ 2015-05-29 14:45  KenmuHuang  阅读(301)  评论(0编辑  收藏  举报
如果您看完本篇博文,觉得对您有所收获,请点击右下角的 [推荐]
如果您想转载,请注明出处(原创内容,请尊重个人劳动成果)
如果您有任何意见或建议,欢迎留言
感谢您的阅读,敬请关注我的后续博客文章