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.
我正在尝试在 HTML 中嵌入 svg 图像,它们似乎没有与 or 标记一起使用。有谁知道如何做到这一点?
Swing 仅支持 HTML/CSS/JavaScript 的一个子集。
JavaFX有更好的支持,如此处所示。
像这样:
</head> <body> <object width="700" height="200" data="fileName.svg"></object> </body> </html>