<!DOCTYPE html> 
 | 
<html lang="zh" xmlns:th="http://www.thymeleaf.org" xmlns:shiro="http://www.pollix.at/thymeleaf/shiro"> 
 | 
<head> 
 | 
    <th:block th:include="include :: header('查看图片')" /> 
 | 
    <th:block th:include="include :: bootstrap-fileinput-css" /> 
 | 
</head> 
 | 
<body class="gray-bg"> 
 | 
  
 | 
     <div class="container-div"> 
 | 
        <div class="row"> 
 | 
            <img id="imgId" style="margin-left: 50%;transform: translateX(-50%)" > 
 | 
        </div> 
 | 
    </div> 
 | 
    <th:block th:include="include :: footer" /> 
 | 
  
 | 
  
 | 
    <script th:inline="javascript"> 
 | 
        var urlAddress = [[${urlAddress}]]; 
 | 
  
 | 
        $(document).ready(function(){ 
 | 
            $("#imgId").attr("src","/bjfw/profile/" + urlAddress); 
 | 
        }) 
 | 
    </script> 
 | 
  
 | 
  
 | 
</body> 
 | 
  
 | 
</html> 
 |