jsf中按钮标签使用图片链接的注意事项:

我们一般在页面上使用普通的html标签时候,某个按钮可能会用图片来显示。比如使用aa.gif这个图片

写法如下:

<img src="<%= request.getContextPath() %>/image/aa.gif" />

其中:<%= request.getContextPath() %> 是相对路径,

当我我们使用jsf的<h:commandButton>按钮标签时候,写法应该是是:

<h:commandButton image="/image/aa.gif" />

而不能是:

<h:commandButton image="<%= request.getContextPath() %>/image/aa.gif" />

否则页面会报异常:

org.apache.jasper.JasperException:

 

attribute for %>" is not properly terminated

你可能感兴趣的:(html,image,JSF)