仅使用普通的javascript,如何在窗口的右上角插入一个总是漂浮在其他元素上方的按钮?
到目前为止,我得到了:
var button = document.createElement("Button");
button.innerHTML = "Title";
button.style = "margin-top:0%;right:0%;position:absolute;"
document.body.appendChild(button);
答案 0 :(得分:4)
使用top
代替margin-top
并设置高z-index
var button = document.createElement("Button");
button.innerHTML = "Title";
button.style = "top:0;right:0;position:absolute;z-index: 9999"
document.body.appendChild(button);
答案 1 :(得分:2)
您几乎就在那里,但不使用margin-top
属性,而是使用top
属性并使用position:fixed;
代替position:absolute;
。
var button = document.createElement("Button");
button.innerHTML = "Title";
button.style = "top:0;right:0;position:fixed;"
document.body.appendChild(button);

答案 2 :(得分:0)
将定位更改为固定,将顶部更改为0
button.style = "top:0%;right:0%;position:fixed;"