问题:
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>
默认展示方式(不合理的情况):
时间: 2024-10-06 17:55:57