我还没有找到任何方法,但我想知道是否有办法将 SVG 嵌入到下拉菜单中。我的 HTML 中已经有一个 SVG,而且似乎连下拉菜单都无法正常工作,但是当我在 W3 上的“Tryit 编辑器”之类的东西中编写所有 JS 时,一切正常,但我缺乏添加的能力SVG 我需要添加。
<svg height="100%" width="100%">
<defs>
<linearGradient id="grad3" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" style="stop-color:rgb(0, 96, 45);stop-opacity:1" />
<stop offset="100%" style="stop-color:rgb(0, 172, 68);stop-opacity:1" />
</linearGradient>
</defs>
<rect width="930" height="340" fill="url(#grad3)" />
</svg>
如果有帮助,这里有我的 SVG 代码。
提前致谢!