提问者:小点点

如果在if块中[duplicate],则不会应用JS节点样式


既不应用样式顶部也不应用样式底部。我怎样才能解决这个问题?

        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);```

共1个答案

匿名用户

同时提供一个单元。

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值。