問題:
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>
?
默認展示方式(不合理的情況):
