移動時間の値を取得して保存するにはどうすればよいですか。誰かがクリックするたびに加算されます
var imgObj = null;
function init(){
imgObj = document.getElementById('myImage');
imgObj.style.position= 'relative';
imgObj.style.left = '0px';
}
function moveRight(){
if(parseInt(imgObj.style.left) < 700){
imgObj.style.left = parseInt(imgObj.style.left) + 10 + 'px';
}
if(parseInt(imgObj.style.left) == 700){
imgObj.style.left = parseInt(imgObj.style.left) + 0 + 'px';
}
}
window.onload =init;