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.
如何使用标签、超链接或任何其他小部件在 gwt 中创建 mailto 链接,并将该小部件添加到 DisclosurePanel。请问有什么想法吗?
disclosurePanel.setContent( new Anchor("Contact us", "mailto:contact@example.com"));
您可能希望在浏览器选项卡中打开 mailto:
disclosurePanel.setContent( new Anchor("Contact us", "mailto:contact@example.com"), "_blank");