【发布时间】:2018-07-19 18:46:32
【问题描述】:
在 html 中,我有一个没有文本的按钮元素。它有一个带有一些路径和矩形的子 svg 元素。它工作正常:
我尝试在 javascript 中创建它。问题是,该按钮不可见。如果我使用textContent 或innerHtml 为其设置一些文本,则该按钮在文本中可见,但svg 不存在。如何在 javascript 中创建此按钮?这是代码:
var myButton = document.createElement("button");
myButton.setAttribute("class", "my-button");
myButton.setAttribute("id", "foo");
var mySVG = document.createElement("svg");
mySVG.setAttribute("id", "my-svg");
mySVG.setAttribute("viewBox", "0 0 12.25 15.45");
var icon1 = document.createElement("g");
icon1.setAttribute("class", "g-element1");
icon1.setAttribute("id", "g1");
var iconPath = document.createElement("path");
iconPath.setAttribute("d", "M0,25L0,0l12.25,7.7L0,15.45z");
var icon2 = document.createElement("g");
icon2.setAttribute("class", "g-element2");
icon2.setAttribute("id", "g2");
var rect1 = document.createElement("rect");
rect1.setAttribute("x", "0");
rect1.setAttribute("y", "0");
rect1.setAttribute("width", "4.1");
rect1.setAttribute("height", "15.45");
var rect2 = document.createElement("rect");
rect2.setAttribute("x", "8.1");
rect2.setAttribute("y", "0");
rect2.setAttribute("width", "4.1");
rect2.setAttribute("height", "15.45");
icon1.appendChild(iconPath);
icon2.appendChild(rect1);
icon2.appendChild(rect2);
mySVG.appendChild(icon1);
mySVG.appendChild(icon2);
myButton.appendChild(mySVG);
document.getElementById('some-element').appendChild(myButton)
.my-button {
font-size: 14px;
height: 17px;
cursor: pointer;
margin-left: 5px;
&:hover, &:focus {
opacity: .8;
}
}
<div id="some-element">
<button class="my-button" id="foo">
<svg id="my-svg" viewBox="0 0 12.25 15.45">
<g class="g-element1" id="g1">
<path d="M0,25L0,0l12.25,7.7L0,15.45z"/>
</g>
<g class="g-element2" id="g2">
<rect x="0" y="0" width="4.1" height="15.45"/>
<rect x="8.1" y="0" width="4.1" height="15.45"/>
</g>
</svg>
</button>
</div>
此外,当我只在 javascript 中创建按钮并且没有为其设置文本(也没有 svg)时,该按钮不可见。
【问题讨论】:
-
您可以尝试添加一个带有空格的文本节点吗? document.createTextNode("\u00A0");
-
如here 中所述,您可以尝试
document.createElementNS("http://www.w3.org/2000/svg", "svg");而不是document.createElement("svg");,但这只是一个想法 -
我在运行发布的示例代码时看到两个按钮。它们看起来都没有任何 SVG,但我不确定 SVG 应该显示什么。请注意,您必须在 HTML 中使用唯一 ID。
-
@HenriquePauli 这实际上几乎是正确的,除了我必须在 svg 的所有子元素及其属性(如 here)上使用此构造。现在它起作用了。感谢您的建议。
标签: javascript html css button svg