早速質問です。スタイルの左/右の値を別の座標 (マウスとしましょう) と比較したい場合、どうすればよいですか?
マウス座標なしで試したのは次のとおりですが、何らかの理由で条件が実行されません...
<style>
#container
{
position:absolute;
left:400px;
top:200px;
}
</style>
<script>
function moveExit(){
var containerId = document.getElementById("container").style;
if(containerId.left == 400 + "px")
containerId.left = 395 + "px";
}
</script>
そして、ここに私の体があります:
<body>
<div id="container">
<img
src="Images/image.jpg"
onmouseover="moveExit();"
/>
</div>
</body>
JavaScript をいじるのは初めてです。ありがとうございます。