既不应用样式顶部也不应用样式底部。我怎样才能解决这个问题?
let btn = document.createElement("button");
btn.style.position = "fixed";
if (this.anchorBottom) {
btn.style.bottom = this.y;
console.log(true)
}
else {
btn.style.top = this.y;
}
btn.style.right = 0;
document.body.appendChild(btn);```
同时提供一个单元。
let btn = document.createElement("button");
btn.style.position = "fixed";
if (this.anchorBottom) {
btn.style.bottom = `${this.y}px`;
console.log(true)
} else {
btn.style.top = `${this.y}px`;
}
btn.style.right = '0px';
document.body.appendChild(btn);
请记住,您不仅限于使用px
值。