我没有找到任何方法,但我想知道是否有办法将SVG嵌入到下拉菜单中。我已经在我的HTML中有一个SVG了,甚至看起来都没有下拉功能,但是当我在W3上用'Tryit Editor'之类的东西编写所有的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代码。
提前致谢!