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.
我的 adobe edge 组合中有一个指向外部网页 URL 的链接。如何获取该链接以在弹出窗口中打开外部 HTML 页面?
嗨,我认为这就是您要寻找的东西:
将此添加到您要按下的按钮上的单击操作,该操作将带您进入新页面。
window.open("http://yourURL.com", "_blank");
我希望这会有所帮助。
亚当