单击按钮时,我试图移动 div 的位置,但它不起作用。这是我的代码:
<script>
function changePosition1() {
document.getElementsByTagName("div").style.top="300px";
}
</script>
<button type="button" onclick="changePosition1()">click me</button>
<div style="position: absolute; height:100px; width:100px; background-color: green;"></div>