1、设置标签(如img, div等等)的样式:将position设置为absolute,例如: 2、用一个临时元素来记录标签的状态 。将临时元素的display设置为none ,隐藏这个临时元素,这里使用了input 扮演临时元素。值为0表示这个标签没有被移动过。当你的鼠标在这个标签上按下的时候,它的值被设置为1,表示准备拖放和移动。 3、象下面一样设置 : 4、最后看下JavaScript函数了: 代码 复制代码 代码如下: <BR>function mousedown() <BR>{ <BR>document.getElementById("temp_id").value = "1"; <br><br>} <BR>function mouseup() <BR>{ <BR>document.getElementById("temp_id").value = "0"; <BR>document.getElementById("move_id").style.cursor = "default"; <BR>} <BR>function mousemove() <BR>{ <BR>if (document.getElementById("temp_id").value == "1") <BR>{ <BR>document.getElementById("move_id").style.top = event.clientY - 10; <BR>document.getElementById("move_id").style.left = event.clientX - 50; <BR>document.getElementById("move_id").style.cursor = "move"; <BR>} <BR>} <BR>