代码示例:(标识:dhtm_examples_imgposition)
<html>
<head>
<script type="text/javascript">
function moveleft()
{
document.getElementById('image').style.position="absolute"
document.getElementById('image').style.left="0"
}
function moveback()
{
document.getElementById('image').style.position="relative"
}
</script>
</head>

<body>

<img id="image" src="/static/demo/images/eg_bulbon.gif"
onmouseover="moveleft()"
onmouseout="moveback()"  />

</body>
</html>
运行结果: