在下面的代码中有两个a4j:输出面板。我在顶部添加了img标记,但它导致第二个输出面板无法显示。如果我从代码中删除它,一切都会显示和运行。知道可能导致这种情况的原因吗?
<a4j:outputPanel id="Display">
<img id="Image"
src="/document/image"
alt="no image">
</img>
<br/>
<a4j:commandButton id="removeButton"
action="#{user.remove}"
value="Remove "
ajaxSingle="true"
reRender ="Display"
styleClass="delete-button">
</a4j:commandButton>
答案 0 :(得分:0)
使用
关闭图像标记<img id="signatureImage"
src="/document/image"
alt="no image"/>
如同,不使用
</img>
关闭它, 解决了这个问题。