我正在将嵌入视频代码保存在数据库中并从数据库中检索它,但它不显示视频它只显示代码代替视频。
视频链接:
<iframe src="https://www.facebook.com/video/embed?video_id=1418261161721629" width="1024" height="576" frameborder="0"></iframe>
显示嵌入视频的代码:
<div class="products">
<ul>
<c:forEach var="row" items="${result.rows}">
<li class="first">
<c:out value="${row.video_link}"/>
</li>
</c:forEach>
</ul>
</div>