我正在使用<p:graphicImage>,如下所示:

<div id="mapp">
    <h3>Country Map</h3>
    <p:graphicImage id="city"
                    value="#{countryPages_Setup.countryMap}"
                    width="250"
                    height="190">

     </p:graphicImage>
</div>

但这不是可点击的图像。如何使该图像可单击,以便用户单击它时,可以调用所需的托管bean操作。

最佳答案

将图片包裹在h:commandLink/h:link中:

<h:commandLink action="...">
  <p:graphicImage id="city"
            value="#{countryPages_Setup.countryMap}"
            width="250"
            height="190">
  </p:graphicImage>
</h:commandLink>

10-07 19:25