我正在使用gmaps4jsf jar文件并在google地图上获取动态标记。标记有一些信息,一旦我点击标记,然后得到弹出窗口,我写在那里"点击我!"我想提供标记数据的链接
jsf代码:
<m:map id="map" width="650px" height="450px" latitude="#{map.latitude}" longitude="#{map.longitude}" enableScrollWheelZoom="true" zoom="9">
<m:marker latitude="#{point2.latitude}" longitude="#{point2.longitude}" >
<m:htmlInformationWindow htmlText="Click me!" />
</m:marker>
</m:map>
<p:column>
<p:commandButton value="Display" action="#{map.display}" update="form"/>
</p:column>
答案 0 :(得分:1)
你想写这样的东西,
<m:htmlInformationWindow htmlText="Click <a href='info.xhtml' target='_blank'>me!</a>" />
target =&#39; _blank&#39; 表示如果要打开相同的标签,则链接将在新标签页中打开,然后您可以删除目标。
但是在jsf中你不能在没有&amp;的情况下实现符号。 operater所以你需要在< means "<" and > means ">"
<m:htmlInformationWindow htmlText="Click <a href='info.xhtml' target='_blank'>me!</a>" />