我的代码像这样: setFooter () { if (!this.footer) { const div = document.createElement('div') let html html = "<span><div style='float:left; border-radius: 12px;'></div></span>" + "<span style='font-size:12px'>Available</span>" div.innerHTML = html document.querySelector('.v-date-picker-table').append(div) this.footer = true } }我在谷歌中进行了搜索,并获得了添加变量的参考。在我的代码中,我添加了变量。您可以看到 和 。但是为什么存在错误呢?在铬和火狐浏览器中,它可以工作constlet
2 回答
波斯汪
TA贡献1811条经验 获得超4个赞
ParentNode.append()
方法在ie中不受支持,您可以在浏览器兼容性部分中 https://developer.mozilla.org/en-US/docs/Web/API/ParentNode/append 阅读有关它的信息。
但是在同一文档中有一个Polyfill看看
添加回答
举报
0/150
提交
取消