我有一些6個按鈕要顯示在工具欄中,並且按鈕必須以這樣一種方式顯示,即有一個分組,即3個按鈕後跟一個空格然後又是另外3個按鈕。我使用JSF作爲UI框架。按鈕之間的空格之間的文本消失在IE
的問題在於,當我在第一組最後一個按鈕在要顯示的即有間「點擊這裏」有空間的文字,只有點擊獲取顯示
使用表HTML標籤組的一組其實即時通訊按鈕
<table>
<tr>
<td>
<%-- 1st 3 buttons --%>
<%-- the last button here has the text "Click here", But only Click is displayed in UI --%>
</td>
<td></td>
<td></td>
<%-- This is used to get the gap between group of buttons and this is what is causing the issue --%>
<td>
<%-- Another 3 buttons --%>
</td>
</tr>
</table>
代碼按鈕中的一個(所有其他使用同樣方法繪製)
<hx:jspPanel id="b1" rendered="true">
<p:outputButtonLink id="b11" rendered="true"
value="Click Here"
iconSrc="../../images/click1.gif"
href="#" onclick="return Show();">
</p:outputButtonLink>
</hx:jspPanel>
請發佈發出按鈕的代碼以及 – 2010-02-24 06:10:21
也給出生成的HTML。什麼是'p:'? Primefaces? – Bozho 2010-02-24 06:52:44