在案例中主要的代码如下:判断当前拖动的dom节点是不是我要的那个div ,如果不是,说明就是拖动了子元素,那么就通过this.parentNode 获取父元素(还找到这个div,进行位置的变动)
if(me.getElementByXid('drag') != this){ this.parentNode.style.webkitTransform = "translate3d(" + offx + "," + offy + ",0)"; return; }
这个案例是根据/UI2/system/components/justep/touch/demo/touchjs/mainActivity.w修改的! 你可以覆盖上去看下演示效果和代码
评一波