问题:
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下的个人图片显示有误问题
 

相关文章:

  • 2021-06-29
  • 2022-01-03
  • 2021-06-08
  • 2022-12-23
  • 2021-12-24
  • 2022-12-23
  • 2021-12-10
  • 2021-12-23
猜你喜欢
  • 2021-10-21
  • 2021-12-02
  • 2021-07-19
  • 2022-02-07
  • 2021-06-07
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案