作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
嗨,我得到对象 HTMLButtonElement由于var btn = document.createElement('button');
这是正常行为但我怎样才能得到普通按钮作为图形而不是对象呢?即<button type="button">
就像将对象转换为字符串,但在本例中反对什么?
最佳答案
在dom中,Button存储为 HTMLButtonElement 的实例对象,这就是为什么当您尝试将其转换为字符串(调用 toString()
)时,您会得到 [object HTMLButtonElement]
。
由于您想将按钮添加到 View (dom 树)中,因此可以使用 appendChild() 将按钮实例附加到树中喜欢
var btn = document.createElement('button');
btn.innerText = 'this button';
document.getElementById('container').appendChild(btn);
document.getElementById('markup').innerText = btn.outerHTML;
<div id="container"></div>
<pre id="markup"></pre>
关于javascript - 如何将 HTMLButtonElement 对象转换为 html 按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36563108/
我是一名优秀的程序员,十分优秀!