代码放出来看看
是不是冒泡和捕获的问题
试试简单的,看看点击图片时 div上的onclick事件有没有被触发
// 看起来是使用 jquery ,代码贴完整些吧,
this.mousedown(function(){
中this是指向什么对象都没看出来
//加一个 return false
//另外 event.offsetX 并不兼容 firefox
$(document).mousemove(function(){
if(movestart){
$("#id1").css("left",event.clientX-x1+"px");
$("#id1").css("top",event.clientY-y1+"px");
return false;
}
})