我正在寻找一个简单的脚本来移动JavaScript中的图像。 Google搜索结果中的代码示例对我不起作用。
请帮忙。
答案 0 :(得分:3)
要直接回答您的问题,此脚本会移动位于绝对定位父级右侧42像素和42像素的图像(假设图像尚未位于该位置)。
var img = document.getElementById("IDImage");
img.style.position = "absolute"; // You should style this with CSS, not this script
img.style.top = 42 + "px";
img.style.left = 42 + "px";