码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2015-05-29 15:23:41      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:

问题:
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>
 
默认展示方式(不合理的情况):
技术分享
 

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

标签:

原文地址:http://www.cnblogs.com/huangjianwu/p/4538489.html

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