如何在图像连接到ftp服务器时动态加载图像?

时间:2018-04-03 00:43:10

标签: jquery html jsp

图像src连接到ftp服务器。我不知道在哪些方面可以加载ftp服务器中的映像。

JSP方

 <c:choose>

 <c:when test="${i.objThomasian.entryYear <= 1999}">

 <img src="path in the ftp server" class="img-fluid" id="imageholder" onload="loadImageOldEntryYearStudent('${i.id}')"/>  

</c:when>

<c:otherwise>

<img src="path in the ftp server" class="img-fluid" id="imageholder" onload="loadImageNewEntryYearStudent('${i.objThomasian.entryYear},${i.id}')"/> 

</c:otherwise>

</c:choose>

0 个答案:

没有答案