0
我在我的應用程序jsp頁面上有這個DIV,我需要「注入」到GWT VerticalPanel。編碼在包含 「__gwt_historyFrame」 的iframe標籤的頂部:在GWT面板中插入一個DIV
的index.jsp
<div class="footer" id="footer" style="display:none">
<p>Copyright © 2012 MyCompany. All Rights Reserved.</p>
<a href="#">FAQ</a>
<a href="#">Privacy</a>
<a href="#">API</a>
<a href="#">Contact Us</a>
</div>
我插入DIV的觀點與此代碼:
DivElement footer = (DivElement) document.getElementById("footer");
verticalPanel.getElement().appendChild(footer);
然而,沒有出現,雖然getElementById
不返回null
什麼是正確的方法 去做這個?