拖动div时 想要有虚线边框。
在onmousedown的时候 把div的border设置成虚线不就行了?
div.onmousedown=function(){
this.style.border="1px #ccc dashed";
....// more
}