Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我有一个简单的要求,但实现起来真的很困惑。我有一个 portletvview.jsp,并且该页面中有一个链接。单击该链接时,我应该打开一个弹出页面,这是我的第二个 jsp。如何在 JSR-286 Basic Portlet 中实现这一点?真的很感激任何帮助..
谢谢,哈利
我没有得到完整的问题。但据我所知,你需要这样的东西
将此函数放入 javacript 文件或 html 页面的 header 标记中
function myPopup() { window.open( "place the link for the next jsp here" ) } <input type="button" onClick="myPopup()" value="POP!">